本文整理汇总了Python中note.Note.from_json方法的典型用法代码示例。如果您正苦于以下问题:Python Note.from_json方法的具体用法?Python Note.from_json怎么用?Python Note.from_json使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类note.Note
的用法示例。
在下文中一共展示了Note.from_json方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: show_notes
# 需要导入模块: from note import Note [as 别名]
# 或者: from note.Note import from_json [as 别名]
def show_notes(noteId=None):
if noteId:
notes = (list(db.notes.find({'noteId': noteId})))
print notes
if notes:
note = Note.from_json(notes[0]) # convert to python object
note_title = note.title
content = note.content
noteId = note.noteId
return render_template('show_note.html', title=note_title, content=content, noteId=noteId)
示例2: update_note
# 需要导入模块: from note import Note [as 别名]
# 或者: from note.Note import from_json [as 别名]
def update_note():
data = request.get_json(force=True, silent=True)
print "POST data received"
print data
title = data.get("title")
content = data.get("content")
noteId = int(data.get("noteId"))
the_note = db.notes.find_one({'noteId': noteId})
if the_note:
print type(the_note)
my_note = Note.from_json(the_note)
my_note.title = title
my_note.content = content
else:
my_note = Note(title, content, noteId=noteId)
print the_note
db.notes.find_and_modify(query={'noteId': noteId},
update=my_note.to_json(),
upsert=True)
return json.dumps({"success": True})