在 Django 中将 Self 定义为多个属性

发布于 2024-12-06 09:06:43 字数 258 浏览 0 评论 0原文

我是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

扭转时空 2024-12-13 09:06:43

如果我正确理解了您的意思,那么以下内容应该会产生您正在寻找的结果(但您需要编辑属性名称):

def __unicode__(self):
    return u"{0} ({1}, {2})".format(self.icon, self.attrib1, self.attrib2)

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):

def __unicode__(self):
    return u"{0} ({1}, {2})".format(self.icon, self.attrib1, self.attrib2)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文