-2

我正在关注该教程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”时,您能帮我解决一下吗?

4

2 回答 2

1

在我的美味派实现中,我有类似以下内容:

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)),
)

也许,试试吧。即使它不能改善这种情况,无论如何你都会想这样做,因为否则你不能添加多个资源。

于 2012-08-02T20:59:34.440 回答
1

尝试改变这一点

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

有了这个:

url(r'^api/', include(recipe_resource.urls)), #without the simple quotes in the "include" parameter
于 2012-08-05T14:13:30.293 回答