我在 model.py 中定义了以下 get_absolute_url:
class Product(models.Model):
def get_absolute_url(self):
return "/products/category/type/%d%s%d" % (self.owner.id,
self.owner, self.id)
我在 urls.py 中定义了以下 urlconf:
url(r'^products/category/type/(\w+)(\w+)(\w+)/$', 'detail'),
在views.py 中的'detail' 方法中,我如何使用它的get_absolute_url 来引用Product 对象的实例?
我是新来的。谢谢您的帮助!