-3

私は、ユーザーの写真のアップロードとアルバムの作成 (Facebook フォト アルバムのような) を必要とするプロジェクトを行っています。1 人のユーザーが 1 つのアルバムに複数の写真をアップロードでき、複数のアルバムをアップロードできます。検索後、django imagestore アプリが十分に便利であることがわかりました。しかし、残念ながら、imagestore の例やチュートリアルは見つかりませんでした。私は django の初心者です。このアプリについてのサンプル チュートリアルが必要です。フォト アルバムを作成するためのより良い方法を提案できますか?

これがフォトアルバムを作成する私のアプローチです -

def img_file_upload_path(instance, filename):
    """ creates unique-Path & filename for upload """
    ext = filename.split('.')[-1]
    filename = "%s%s.%s" % ('img', instance.pk, ext)

    return os.path.join(
        'images','eventpic','original',                                                      
        instance.event_id.channel_id.publisher.user.username, 
        instance.event_id.channel_id.channel_title, 
        instance.event_id.event_title, 
        filename
    )   

def formatted_img_file_upload_path(instance, filename):
    """ creates unique-Path & filename for upload """
    ext = filename.split('.')[-1]
    filename = "%s%s.%s" % ('img', instance.pk, ext)

    return os.path.join(
        'images','eventpic','formatted', 
        instance.event_id.channel_id.publisher.user.username, 
        instance.event_id.channel_id.channel_title, 
        instance.event_id.event_title,
        filename
    )    

def thumb_img_file_upload_path(instance, filename):
    """ creates unique-Path & filename for upload """
    ext = filename.split('.')[-1]
    filename = "%s%s.%s" % ('img', instance.pk, ext)

    return os.path.join(
        'images','eventpic','thumb', 
        instance.event_id.channel_id.publisher.user.username, 
        instance.event_id.channel_id.channel_title, 
        instance.event_id.event_title,
        filename
    )    

class Album(models.Model):
    album_id = models.AutoField(primary_key=True)
    event_id = models.ForeignKey(event_archive,db_column='event_id')
    name = models.CharField(max_length=128)
    summary = models.TextField()
    date_created = models.DateTimeField(auto_now_add=True)
    date_modified = models.DateTimeField(auto_now=True)


class Photo(models.Model):  
    image_id            = models.AutoField(primary_key=True)
    album               = models.ForeignKey(Album,db_column='album_id')
    title               = models.CharField(max_length=255)
    summary             = models.TextField(blank=True, null=True)
    date_created        = models.DateTimeField(auto_now_add=True)
    date_modified       = models.DateTimeField(auto_now=True)
    is_cover_photo      = models.BooleanField()
    original_image      = models.ImageField(upload_to=img_file_upload_path) 

    def save(self):
        if self.is_cover_photo:
            other_cover_photo = Photo.objects.filter(album=self.album).filter(is_cover_photo = True)
            for photo in other_cover_photo:
                photo.is_cover_photo = False
                photo.save()
        filename = self.img_file_upload_path()
        if not filename == '':
            img = Image.open(filename)
            if img.mode not in ("L", "RGB"):
                img = img.convert("RGB")

            img.resize((img.size[0], img.size[1] / 2),Image.ANTIALIAS)
            img.save(self.formatted_img_file_upload_path(),quality=90)
            img.thumbnail((150,150), Image.ANTIALIAS)
            img.save(self.thumb_img_file_upload_path(),quality=90)
        super(Photo, self).save()


    def delete(self):
        filename = self.img_file_upload_path()
        try:
            os.remove(self.formatted_img_file_upload_path())
            os.remove(self.thumb_img_file_upload_path())
        except:
            pass
        super(Photo, self).delete()

    def get_cover_photo(self):
        if self.photo_set.filter(is_cover_photo=True).count() > 0:
            return self.photo_set.filter(is_cover_photo=True)[0]
        elif self.photo_set.all().count() > 0:
            return self.photo_set.all()[0]
        else:
            return None

ここで修正できなかったエラーは

 filename = self.img_file_upload_path()

エラーを修正するのに助けが必要です。フォトアルバムのような Facebook を作成するアプローチは大丈夫だと思いますか?それとも、imagestore アプリを使用する必要がありますか?ここで、アップロード中にフォーマットされた画像とサムネイル画像を保存したいことを述べたいと思います..あなたの専門家のレビューと助けが必要です。

4

1 に答える 1

0

Photoトレースバックが表示されなくても、モデルに存在しないメソッドを呼び出そうとしているため、エラーが発生していると確信しています。

def img_file_upload_path(instance, filename):
def formatted_img_file_upload_path(instance, filename):
def thumb_img_file_upload_path(instance, filename):

upload_toこれらは、新しく保存された画像ファイルのパス アップロード パスを決定するためのハンドルとして定義され、割り当てられた単なる関数です。彼らはあなたのクラスに住んでいません。それらを手動で呼び出せるようにするには、次のようにする必要があります。

filename = img_file_upload_path(self, 'original_name.jpg')

適切に設定されていると仮定するとoriginal_image、次のようになります。

if self.original_image.name:
    filename = img_file_upload_path(self, self.original_image.name)
于 2012-08-29T00:42:11.657 に答える