代码之家  ›  专栏  ›  技术社区  ›  sqram

IF语句导致webpy内部服务器错误

  •  1
  • sqram  · 技术社区  · 16 年前

    我有这个类:

    class View(object):
        def main_page(self, extra_placeholders = None):
            file = '/media/Shared/sites/www/subdomains/pypular/static/layout.tmpl'
    
            placeholders = { 'site_name' : 'pypular' } 
    
            # If we passed placeholders vars, append them
            if extra_placeholders  != None:
                for k, v in extra_placeholders.iteritems():
                    placeholders[k] = v
    

    如您所见,该函数接受一个参数(extra_placeholders),这是一个字典。

    如果我不向main_page()传递参数,

    if extra_placeholders  == None:
        return 'i executed'
    

    运行良好。然而,

    if extra_placeholders  != None:
        return 'i cause error'
    

    1 回复  |  直到 10 年前
        1
  •  1
  •   Community Mohan Dere    9 年前

    if !( extra_placeholders  is  None) :
    

    编辑:要反映评论:

    看来(谢谢)您还可以使用:

     if extra_placeholders  is  not None :
    

    更新:原始链接现在已经死了,所以这个so答案是一个很好的参考: https://stackoverflow.com/a/3289606/30225