我正在尝试找到一种在 Django 中编写引用外部 URL 的正确视图的方法。
例如,通常我可以编写一个简单的视图,如下所示:
from django.http import HttpResponse
def my_view(request):
if True:
return HttpResponse('<h1 >hello world</h1 >')
或者,我们可以使用render_to_response
. 我们如何引用外部 URL,例如“google”?