本文整理汇总了Python中flask.Markup.unescape方法的典型用法代码示例。如果您正苦于以下问题:Python Markup.unescape方法的具体用法?Python Markup.unescape怎么用?Python Markup.unescape使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类flask.Markup
的用法示例。
在下文中一共展示了Markup.unescape方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: index
# 需要导入模块: from flask import Markup [as 别名]
# 或者: from flask.Markup import unescape [as 别名]
def index():
db = DBops()
posts = db.get_posts()
labels_lst = ['label-default','label-primary','label-success','label-info','label-warning','label-danger']
total_lst =[]
#sample = ['ds9','tag2','star trek','four','another','six']
for i in posts:
lst = comma_parse(i['tags'])
total_lst.append(lst)
i = 0
for i in range(len(posts)): # Remember how I used Markup.escape() before added into db to prevent SQL Syntax probs,
# Now, I am using Markup.unescape() to reverse the process before displaying onto the page
posts[i]['content'] = Markup.unescape(posts[i]['content'])
i = i + 1
return render_template('index.html',posts=posts,labels=labels_lst,tags=total_lst,len_posts=len(posts),blogtitle=blog_title)
示例2: post
# 需要导入模块: from flask import Markup [as 别名]
# 或者: from flask.Markup import unescape [as 别名]
def post(postid):
db = DBops()
post = db.get_posts(id=postid)
post['content'] = Markup.unescape(post['content'])
return render_template('post.html',post=post, blogtitle=blog_title)