这款django应用有什么问题?

时间:2012-08-02 20:39:55

标签: django tastypie

我正在关注该教程http://thecodachi.blogspot.com/2012/03/django-tastypie-with-android-client.htmlhttps://github.com/Mbosco/tastypie-api-example 我在教程中做了所有的事情但是,我收到一个错误“没有名为recipe_resource.urls的模块”,当我运行“localhost:8000 / api / recipes /?format = json”时 你能帮我解决一下吗?

2 个答案:

答案 0 :(得分:1)

在我的tastypie实现中,我有类似于以下内容:

from tastypie.api import Api
from recipes.api import RecipeResource

v1_api = Api(api_name='v1')
v1_api.register(RecipeResource())

urlpatterns += patterns('',
    (r'^api/', include(v1_api.urls)),
)

或许,试试吧。即使它没有改善这种情况,你仍然希望这样做,无论如何,因为否则你不能添加多个资源。

答案 1 :(得分:1)

尝试更改此

url(r'^api/', include('recipe_resource.urls')), 

用这个:

url(r'^api/', include(recipe_resource.urls)), #without the simple quotes in the "include" parameter