本文整理汇总了Python中models.Question.find_by_slug方法的典型用法代码示例。如果您正苦于以下问题:Python Question.find_by_slug方法的具体用法?Python Question.find_by_slug怎么用?Python Question.find_by_slug使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类models.Question
的用法示例。
在下文中一共展示了Question.find_by_slug方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_creation
# 需要导入模块: from models import Question [as 别名]
# 或者: from models.Question import find_by_slug [as 别名]
def test_creation(self):
self.app.post('/t1/ask', dict(text = 'why? why? why?', details = 'simply, maybe'))
question = Question.find_by_slug('why-why-why')
self.assertTrue(question)
self.assertEqual("why? why? why?",question.text)
self.assertEqual("simply, maybe",question.details)
self.assertEqual(self.creator.name,question.creator.creator.name)
示例2: post
# 需要导入模块: from models import Question [as 别名]
# 或者: from models.Question import find_by_slug [as 别名]
def post(self, boragle_slug, question_slug):
question = Question.find_by_slug(question_slug)
avatar = self.get_avatar_for_boragle(question.boragle)
assert avatar, question
answer = self.read('answer')
if not(answer and answer.strip()): raise PostingError('Please provide an answer')
Answer.create(question = question, text = answer, creator = avatar)
page = self.calc_last_page(question.answer_count, settings.answer_page_size)
self.redirect(question.url+'?page='+str(page))
示例3: get
# 需要导入模块: from models import Question [as 别名]
# 或者: from models.Question import find_by_slug [as 别名]
def get(self, boragle_slug, question_slug):
question = Question.find_by_slug(question_slug)
assert question
paginator = utils.Paginator(current_page = int(self.read('page') or 1),
page_size = settings.answer_page_size,
item_count = question.answer_count,
getter = question.get_answers_by_votes)
avatar = self.get_avatar_for_boragle(question.boragle)
self.render_template('qna', dict(question=question,
boragle = question.boragle,
authdetails = utils.authdetails(question.url),
creator = avatar,
answers = paginator.items,
paginator = paginator
))