4

我们有这段代码,它运行良好。进行重构后,它不再起作用。就像评论说的那样,如果请求不是 ajax 请求,我们只想从基本页​​面继承。为此,我们将一个参数传递给模板,并根据该参数,我们是否继承。

视图.py

class Router(object):
    def __init__(self, request):
        self.request = request

    @view_config(route_name="home")
    def get(self):
        template = "home.mak"
        value = {'isPage':self.request.is_xhr is False}
        return render_to_response(template, value, request=self.request)

模板.mak

##conditional to determine with the template should inherit from the base page
##it shouldn't inherit from the base page is it is being inserted into the page using ajax
<%!

   def inherit(context):
       if context.get('isPage') == True:
           return "base.mak"
       else:
           return None
%>
<%inherit file="${inherit(context)}"/>

目前,错误是 Undefined does not have attribute __ getitem __。如果我们将 ${inherit(context)} 更改为 ${inherit(value)} 我们会得到全局变量值未定义。

4

3 回答 3

1

只是遇到了同样的问题,实际上也遇到了同样的用例(渲染布局或不取决于请求是 XHR)。

您显然可以访问requestthrough context,因此您可以避免将这一点逻辑拆分到两个地方(视图和模板):

<%!
   def inherit( context ):
       if not context.get('request').is_xhr:
           return 'layout_reports.mako'
       else:
           return None
%>
<%inherit file="${inherit(context)}"/>
于 2013-08-08T14:19:28.310 回答
0

我们做了一个相当大的重构,上面的代码又可以工作了。我猜传入的上下文没有初始化,或者其中一个模板存在语法错误。

顺便说一句,请求对象有一个名为 is_xhr 的属性,如果请求是异步的,则该属性为真。我们使用这个属性来确定我们是否需要加载整个页面。所以 is_page = self.request.is_xhr 是 False

于 2013-08-07T18:55:36.770 回答
-1

我不确定这是否有效

 %if not request.is_xhr:
 <inherit file='base.mako'/>
 %endif

假设请求在上下文中可用

于 2013-08-07T10:28:13.677 回答