Только что начал с Django TastyPie для предоставления данных с помощью JSON.
Попытка связать ресурсы с помощью tastypie.Api для urls.py
Пример, приведенный в
http://django -tastypie.readthedocs.org / о / последние / tutorial.html # создания-ресурсы
НЕ работает из коробки.
Моя urls.py
запись:
#now for the api
from tserver.api import PurchaseResource,DataResource
#combine several APIs
from tastypie.api import Api
api = Api(api_name='')
api.register(PurchaseResource(),canonical=True)
api.register(DataResource(),canonical=True)
urlpatterns = patterns('', (r'^api/',include(api.urls)),
)
и api.py
:
#!/bin/env python
from tastypie.resources import ModelResource
from tastypie import fields
from tserver.models import Purchase,Data
class DataResource(ModelResource):
class Meta:
queryset = Data.objects.all()
class PurchaseResource(ModelResource):
Info = fields.ForeignKey(DataResource,'data')
class Meta:
queryset = Purchase.objects.all()
resource_name = 'purchase'
и models.py
:
class Data(models.Model):
tagID = models.CharField(max_length=40)
dtime = models.DateTimeField()
vcardf = models.CharField(max_length = 600)
class Purchase(models.Model):
Info = models.ForeignKey('Data',unique=True)
payment_method = models.CharField(max_length=20,choices=PAYMENT_METHOD)
TotalAmount = models.DecimalField(max_digits = 20, decimal_places=2)
TotalDiscount = models.DecimalField(max_digits = 20, decimal_places=2)
valid_upto = models.DateTimeField()
и, наконец, когда я попробую, ошибки:
http://localhost:8000/api/data/1/?format=json
Результат:
Page not found (404)
Request Method: GET
Request URL: http://localhost:8000/api/data/1/?format=json
Using the URLconf Django tried these URL patterns, in this order:
^admin/
^(?P<api_name>)/$ [name='api__top_level']
^(?P<api_name>)/
^(?P<api_name>)/
The current URL, api/data/1/, didn't match any of these.
Но этой проблемы нет, если я просто использую в urls.py
:
urlpatterns = patterns('', (r'^api/',include(DataResoure().urls)),
)
В чем проблема, когда мы пытаемся связать вещи вместе с api.register(...)
?