本文整理汇总了Python中models.Note.get_by_id方法的典型用法代码示例。如果您正苦于以下问题:Python Note.get_by_id方法的具体用法?Python Note.get_by_id怎么用?Python Note.get_by_id使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类models.Note
的用法示例。
在下文中一共展示了Note.get_by_id方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: delete_note
# 需要导入模块: from models import Note [as 别名]
# 或者: from models.Note import get_by_id [as 别名]
def delete_note(note_id):
note = Note.get_by_id(note_id)
try:
note.key.delete()
flash(u'Note %s deleted.' % note_id, 'success')
return redirect(url_for('list_notes'))
except CapabilityDisabledError:
flash(u'The datastore is in read only mode.', 'info')
return redirect(url_for('list_notes'))
示例2: edit_note
# 需要导入模块: from models import Note [as 别名]
# 或者: from models.Note import get_by_id [as 别名]
def edit_note(note_id):
note = Note.get_by_id(note_id)
form = NoteForm(obj=note)
if request.method == 'POST':
if form.validate_on_submit():
note.title = form.data.get('note_title')
note.body = form.data.get('note_body')
note.slug = slugify(note.title)
note.put()
flash(u'Note %s saved.' % note_id, 'success')
return redirect(url_for('list_notes'))
return render_template('edit_note.html', note=note, form=form)
示例3: get
# 需要导入模块: from models import Note [as 别名]
# 或者: from models.Note import get_by_id [as 别名]
def get(self):
logging.debug("Sprawdzam czy dane sa w memcache")
data = memcache.get('jadlospis')
if data is None:
logging.debug("Danych nie ma w memcache, sprawdzam czy dane sa w NDB")
q = Note.get_by_id('jadlospis')
if q is None:
logging.debug("Danych nie ma w NDB")
data = 'Brak danych w bazie'
else:
logging.debug("Dane sa w NDB")
data = q.kindergartenMenu
logging.debug("Dodaje dane do memcache")
memcache.add(key='jadlospis', value=data, time=expirationTime)
else:
logging.debug("Dane sa w memcache")
template_context = {
'body': data
}
template = jinja_env.get_template('templates/main.html')
self.response.out.write(template.render(template_context))