本文整理汇总了Python中models.Photo.type方法的典型用法代码示例。如果您正苦于以下问题:Python Photo.type方法的具体用法?Python Photo.type怎么用?Python Photo.type使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类models.Photo
的用法示例。
在下文中一共展示了Photo.type方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: savePhoto
# 需要导入模块: from models import Photo [as 别名]
# 或者: from models.Photo import type [as 别名]
def savePhoto(self, galleryId, photoId, photoName, photoDescription, photoPosition, file):
photo = None
if(photoId):
photo = Photo.objects.get(id=photoId)
else:
gid = uuid.uuid1().__str__()
gid = gid.replace('-', '')
photo = Photo()
photo.id = gid
photo.name = photoName
photo.description = photoDescription
photo.position = photoPosition
photo.gallery_id = galleryId
if(file):
photoType = file.name.split('.')
photo.type = photoType[1] if photoType.__len__() == 2 else ''
destination = open(constant.upload_path + galleryId + '/' +
photo.id + '.' + photo.type, 'wb')
try:
for chunk in file.chunks():
destination.write(chunk)
finally:
destination.close()
photo.save()