我知道对此有一个简单的答案,但我还没有找到。在我的views.py 中,我有一个函数旨在添加一个javascript onload 函数以在页面加载时运行。页面加载脚本,但脚本不运行。见下文:
from django.template.response import TemplateResponse
t = TemplateResponse(request, 'viewer/index.html', {})
t.render()
t.content = t.content + "<script type='text/javascript'>window.onload=function(){alert('here');}" + "</script>"
return t