我正在views.py
中进行一些计算,我想显示结果。
我尝试使用以下内容:
return render(request, index.html{message:variable})
和
return HttpResponse(message)
我想将结果显示为弹出消息。我该如何实施?
答案 0 :(得分:1)
首先,您必须渲染模板
return render_template( "example.html",message = any_variable)
然后您可以通过Java脚本通过以下方式在html上显示弹出窗口
<script>
alert("This is alert box!"); // display string message
alert( {{message}} ); // display python variable
</script>
尽管我建议使用jinja作为模板