如何在Django模板中显示* linked *表中字段的值?

时间:2014-08-10 20:32:27

标签: django django-templates

我正在创建一个演示Django网站,您可以在其中浏览Billy Joel的专辑。您单击相册以查看所有歌曲。

(如果它恰好在:http://104.131.200.120/albums/all/ - 目前几乎没有任何数据。只有一首歌在冷泉港,没有一首在无辜的男人身上)

我无法弄清楚如何在相册页面中显示歌曲名称。它可以判断是否一首歌,因为Cold Spring Harbor打印出一个空的“名称/描述”行,而一个Innocent Man则没有。

这是视图

def album(request, album_id=1):
    album = Album.objects.get(id=album_id)
    album_songs = AlbumSong.objects.filter(id=album_id)
    print(str(album_songs))
    return  render_to_response("album.html",
                               {"album": album, "album_songs" : album_songs})

(选择冷泉港时,print会将[<AlbumSong: Cold Spring Harbor: 10: Got To Begin Again>]写入控制台。)

模型(注意歌曲和专辑模型没有通过外键链接。有一个中间表,AlbumSong):

from  django.db import models
from  django.contrib.auth.models import User
from  time import time

def get_upload_file_name(instance, filename):
    return  "uploaded_files/%s_%s" % (str(time()).replace(".", "_"), filename)

class Album(models.Model):
    title = models.CharField(max_length=70)
    pub_date = models.DateField('release date')
    is_official = models.BooleanField(default=False)
    is_concert = models.BooleanField(default=False)
    likes = models.IntegerField(default=0)
    thumbnail = models.FileField(upload_to=get_upload_file_name, blank=True, null=True)

    def __str__(self):
        return  self.title

class Song(models.Model):
    name = models.CharField(max_length=100)
    sub_name = models.CharField(max_length=200, null=True, blank=True)
    length_seconds = models.IntegerField()
    lyrics_url = models.TextField(default="", blank=True, null=True)

    def __str__(self):
        return  self.name

class AlbumSong(models.Model):
    song_id = models.ForeignKey(Song)
    album_id = models.ForeignKey(Album)
    sequence_num = models.IntegerField()

    class Meta:
        unique_together = ('album_id', 'sequence_num',)
        unique_together = ('album_id', 'song_id',)

    def __str__(self):
        return  str(self.album_id) + ": " + str(self.sequence_num) + ": " + str(self.song_id)

class FavoriteSongs(models.Model):
    user_id = models.ForeignKey(User)
    song_id = models.ForeignKey(Song)
    sequence_num = models.IntegerField()

    class Meta:
        unique_together = ('user_id', 'song_id',)
        unique_together = ('user_id', 'sequence_num',)

    def __str__(self):
        return  "user=" + str(self.user_id) + ", song=" + str(self.song_id) + ", number=" + str(self.sequence_num)

class FavoriteAlbums(models.Model):
    user_id = models.ForeignKey(User)
    album_id = models.ForeignKey(Album)
    sequence_num = models.IntegerField()

    class Meta:
        unique_together = ('user_id', 'album_id',)
        unique_together = ('user_id', 'sequence_num',)

    def __str__(self):
        return  "user=" + str(self.user_id) + ", album=" + str(self.album_id) + ", number=" + str(self.sequence_num)

和模板:

{% extends "base.html" %}

{% block title %}Album detail{% endblock %}

<!-- <div id="sidebar"> -->
{% block sidebar %}
  <UL>
     <LI><a href="/albums/all">Albums</A></LI>
  </UL>
{% endblock %}
<!-- </div> -->


{% block content %}

<H1>{{ album.title }}</H1>

<P>{{ album.body }}</P>

{% if album.thumbnail %}
  <P><img src="/static/{{ album.thumbnail }}" width="200"/></P>
{% endif %}

<P><UL>
  <LI>Released: {{ album.pub_date }}</LI>
  <LI>Official: {{ album.is_official }}</LI>
  <LI>Concert: &nbsp;{{ album.is_concert }}</LI>
</UL></P>
  <H2>Songs</H2>

{% for  album_song in album_songs %}  <!-- No colon after "album_songs" -->
  <div>
  <P><UL>
     <LI>Name: <a href="/songs/get/{{ song.id }}">{{ album_song.song.name }}</a><UL>
        <LI>Description: {{ album_song.song.sub_name }}</LI>
     </UL></LI>
  </UL></P>
  </div>
{% endfor %}
<P><a href="/albums/like/{{ album.id }}">Like this album</A> -- {{ album.likes }} people liked this album.</P>

{% endblock %}

如何在模板中显示歌曲名称? album_song.song.name应该改成什么?

谢谢。

1 个答案:

答案 0 :(得分:2)

问题是你的字段名称。出于某种原因,您已从AlbumSong“song_id”和“album_id”调用了您的外键。因此,您应该在模板中使用相同的名称:{{ album_song.song_id.name }}

但是,使用此名称没有意义。 Django字段不代表ID,它代表实际的Song对象。 Django已经创建了一个带有“_id”后缀的底层数据库字段,因此在这种情况下,它创建了一个名为“song_id_id”的字段,这很愚蠢。将字段重命名为“歌曲”和“专辑”,并保持模板的原样。