get请求时返回tpl模板@
get(/newtask)
return template('newtask.tpl')
其中newtask.tpl是已经写好样式的html页面
post提交表单时会返回校验信息或者返回“编辑成功”类似信息
@
post(/newtask)
if():
return “内容不能为空”
else:
return “添加成功”
如果编辑成功post提交后url为:localhost:8080/newtask此时页面是
<html>
<body>
添加成功
</body>
</html>
页面一点样式都没有了
如何让这些返回值也显示在写好样式的newtask.tpl 页面上呢?