用django admin做后台的时候,有些字段内容太长,像文章,长评论,新闻等可以限制显示长度,超出部分用…代替。

  1. 在model.py中定义方法
def short_content(self):

    if len(str(self.content)) > 1000:

        return '{}...'.format(str(self.content)[0:1000])

    else:

        return str(self.content)
  1. 在admin的 list_display中 字段名为定义的方法名
list_display = ['short_content',]

Logo

腾讯云面向开发者汇聚海量精品云计算使用和开发经验,营造开放的云计算技术生态圈。

更多推荐