在 Django 中将 Self 定义为多个属性
我是 Django 新手,正在构建我的第一个应用程序。
我希望通过模型中不同属性的组合来显示“管理”部分中的位置。
目前,它们通过使用以下代码的图标来显示。
def __unicode__(self):
return self.icon
我希望能够将其他两个属性添加到此代码中,以便结果看起来像。
“图标(属性1,属性2)”
如何编辑代码来执行此操作?
I'm new to Django and building my first app.
I want locations in my Admin section to be displayed by a combination of different attributes from the model.
Currently they are shown by the icon by using the following code.
def __unicode__(self):
return self.icon
I want to be able to add my other two attributes to this code so that the result will look like.
"Icon(Attribute1, Attribute2)"
How can I edit the code to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我正确理解了您的意思,那么以下内容应该会产生您正在寻找的结果(但您需要编辑属性名称):
If I have understood you correctly then the following should produce the result that you are looking for (but you'll need to edit the attribute names):