在视图中使用 url args,可以吗?
我想在视图中使用 url 参数(不是模板,我知道该怎么做)。
那么是否可以像这样使用它们:
def item_link(self, item):
return mainpage_url_name + "%s/%i" % (item.slug, item.cid)
mainpage_url_name - 当然是在 url 模式中定义的(作为名称变量)
我是 Django 的新手...
谢谢
I'd like to use url arguments in views (not templates, I know how to do that).
So is it possible to use them like:
def item_link(self, item):
return mainpage_url_name + "%s/%i" % (item.slug, item.cid)
mainpage_url_name - is of course defined in url patterns (as name variable)
I'm a total newb in Django...
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,您应该使用 url 模式的名称,如 记录在此处。
然后你可以使用
reverse()
在您的视图或方法中使用这些名称。根据您的评论,您正在使用联合框架。
因此,您应该确保为模型定义
get_absolute_url()
,最好使用 永久链接装饰器(用于干净地反转您的网址)。查看 Django 文档中的 示例应该是所有必要的。
First you should use names for your url patterns as documented here.
Then you can use
reverse()
to use these names in your views or methods.Following your comments you are using the syndication framework.
Therefore you should make sure that you define
get_absolute_url()
for you models, ideally using the permalink decorator (for a clean reversing of your urls).Looking at the example from Django's docs that should be all that's necessary.