这是我的 django 视图中的 2 个函数。第一个和第二个应该做同样的事情。但是当我使用第一个函数时,它在最后一行显示“外部函数”,即“返回 HttpResponse(output)”。
这是为什么?
谢谢, 希亚姆
def main_page(request):
output = '''
<html>
<head><title>%s</title></head>
<body>
<h1>%s</h1><p>%s</p>
</body>
</html>
''' % (
'Django Learning',
'Welcome',
'WYou can share book marks here!'
)
return HttpResponse(output)
def main_page(request):
title_sowl = "Django Learning"
header_sowl = "Welcome"
text_sowl = "You can share book marks here"
output = u"<html><head><title>%s</title></head><body><h1>%s</h1><p>%s</p></body></html>" % (title_sowl,header_sowl,text_sowl)
return HttpResponse(output)