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


Python FakeRequest.fields方法代码示例

本文整理汇总了Python中nevow.testutil.FakeRequest.fields方法的典型用法代码示例。如果您正苦于以下问题:Python FakeRequest.fields方法的具体用法?Python FakeRequest.fields怎么用?Python FakeRequest.fields使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在nevow.testutil.FakeRequest的用法示例。


在下文中一共展示了FakeRequest.fields方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: render2

# 需要导入模块: from nevow.testutil import FakeRequest [as 别名]
# 或者: from nevow.testutil.FakeRequest import fields [as 别名]
 def render2(self, page, **kwargs):
     # use this to exercise the normal Nevow docFactory rendering. It
     # returns a string. If one of the render_* methods returns a
     # Deferred, this will throw an exception. (note that
     # page.renderString is the Deferred-returning equivalent)
     req = FakeRequest(**kwargs)
     req.fields = None
     ctx = self.make_context(req)
     return page.renderSynchronously(ctx)
开发者ID:ArtRichards,项目名称:tahoe-lafs,代码行数:11,代码来源:common_web.py

示例2: render1

# 需要导入模块: from nevow.testutil import FakeRequest [as 别名]
# 或者: from nevow.testutil.FakeRequest import fields [as 别名]
 def render1(self, page, **kwargs):
     # use this to exercise an overridden renderHTTP, usually for
     # output=json or render_GET. It always returns a Deferred.
     req = FakeRequest(**kwargs)
     req.fields = None
     ctx = self.make_context(req)
     d = defer.maybeDeferred(page.renderHTTP, ctx)
     def _done(res):
         if isinstance(res, str):
             return res + req.v
         return req.v
     d.addCallback(_done)
     return d
开发者ID:ArtRichards,项目名称:tahoe-lafs,代码行数:15,代码来源:common_web.py


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