本文整理汇总了Python中tornado.util.ObjectDict.search_active方法的典型用法代码示例。如果您正苦于以下问题:Python ObjectDict.search_active方法的具体用法?Python ObjectDict.search_active怎么用?Python ObjectDict.search_active使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类tornado.util.ObjectDict
的用法示例。
在下文中一共展示了ObjectDict.search_active方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: get
# 需要导入模块: from tornado.util import ObjectDict [as 别名]
# 或者: from tornado.util.ObjectDict import search_active [as 别名]
def get(self):
ctx = ObjectDict()
ctx.search_active = True
ctx.search = ObjectDict()
data = self.application.data
ctx.particle_types = yield data.find_particle_types()
self.render("latticemodel/lattice_search.html", **ctx)
示例2: post
# 需要导入模块: from tornado.util import ObjectDict [as 别名]
# 或者: from tornado.util.ObjectDict import search_active [as 别名]
def post(self):
ctx = ObjectDict()
ctx.search_active = True
ctx.search = ObjectDict()
ctx.search.model_type = self.get_argument("model_type", None)
ctx.search.name = self.get_argument("name", None)
ctx.search.properties = self.get_argument("properties", None)
#ctx.model_description = self.get_argument("description", None)
data = self.application.data
ctx.models = yield data.search_models(**ctx.search)
self.render("latticemodel/model_search.html", ctx)