当前位置: 首页>>代码示例>>Python>>正文


Python Question.find_by_slug方法代码示例

本文整理汇总了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)
开发者ID:sudhirj,项目名称:boragle,代码行数:9,代码来源:web_question_tests.py

示例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))
开发者ID:sudhirj,项目名称:boragle,代码行数:11,代码来源:main.py

示例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
                                     ))
开发者ID:sudhirj,项目名称:boragle,代码行数:17,代码来源:main.py


注:本文中的models.Question.find_by_slug方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。