我從文件讀取XML格式支持 http://django-tastypie.readthedocs.org/en/latest/serialization.html#to-xml,但是在當前的任務,我只有在瀏覽器中鍵入http://url/api/entry/?format=json和URL.py和條目資源定義對應的URL, json的序列化很好的照顧。但對於XML,還有其他的事情要做,因爲我似乎找不到有用的例子?tastypie:返回XML格式的效應初探
#urls.py
entry_resource = EntryResource()
urlpatterns = patterns('',
url(r'^api/', include(entry_resource.urls)),
)
#entry class
class EntryResource(Resource):
....
....fields
class Meta:
resource_name = 'entry'
object_class = Entry
....
那麼,你有問題嗎? – Marcin 2012-03-01 08:06:57