我正在尝试在django tastypie中创建一个web服务。在我的模型中,我有
class Temp((models.Model):
name = models.CharField(max_length=50)
@property
def modelNumber(self):
return self.name + '/' + str(self.id)
并在我的资源中
class TempResource(ModelResource) :
modelNumber = fields.CharField(attribute='modelNumber', readonly=True)
class Meta:
queryset = Temp.objects.all()
filtering = {'modelNumber':ALL}
我尝试发出request / temp /?modelNumber = NRA / 1。我收到错误,无法将关键字'modelNumber'解析为字段。
答案 0 :(得分:0)
它可能与url中的原始“/”相关吗?