我在 urls.py
中有url(r'^search/foo/$', 'foo'),
和
def foo(request):
return render_to_response("suppliers/dashboard/calender.html") in **views.py**...
它实际上是转到视图文件而不是渲染html文件....我知道它会进入视图定义,因为当我发出语法错误时它会显示错误....任何帮助都会很棒
答案 0 :(得分:1)
render_to_response
格式如下
return render_to_response('shop/order_tracking.html', context_instance=RequestContext(request, {'dict' : dict})