用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) short_content.allow_tags = True 2.在ad…