其他分享
首页 > 其他分享> > django 中的闪现

django 中的闪现

作者:互联网

 

导包

from django.contrib import messages

#输出格式

messages.success(request,'不能为空')

#前端页面的写法

 

{%if messages %}
{% for manage in messages%}
{{manage.message}}
{%endfor %}
{%endif%}

标签:messages%,success,闪现,manage,messages,django,endfor
来源: https://www.cnblogs.com/liang715200/p/10465616.html