1

クエリセットでビデオ要素を取得しようとしていますが、取得できません。

user_channel = Everything.objects.filter(profile = request.user, playlist = 'Channel')
print user_channel[0] #returns the first result without error   
print user_channel[0]['video'] #returns error

Models.py:

class Everything(models.Model):
    profile = models.ForeignKey(User)
    playlist = models.CharField('Playlist', max_length = 2000, null=True, blank=True)
    platform = models.CharField('Platform', max_length = 2000, null=True, blank=True)
    video = models.CharField('VideoID', max_length = 2000, null=True, blank=True)
    video_title = models.CharField('Title of Video', max_length = 2000, null=True, blank=True)
    def __unicode__(self):
        return u'%s %s %s %s %s' % (self.profile, self.playlist, self.platform, self.video, self.video_title)
4

2 に答える 2

1

これを試して、フィルターに基づいてビデオのリストを取得します

user_channel = Everything.objects.filter(profile = request.user, playlist = 'Channel')
video = [x.video for x in user_channel]
print video/print video[0]
于 2012-12-10T09:44:52.177 に答える
0

user_channel[0]辞書ではありません。使用する

user_channel[0].video
于 2012-12-08T20:54:17.437 に答える