我在Django工作。在Django中,当你渲染一个模板时,你会发送一个上下文字典来替换它。因为我很懒/干,我经常使用locals()作为快捷方式,而不是发送一个看起来像{'my_var'的字典:my_var,'var2':var2}。
这通常可以很好地工作,并且可以节省大量精力麻烦的重复。
我正在使用django通知在某些事件发生时发送电子邮件 - 比如说你收到私信。 Django通知带有我现在正在集成的内置排队功能。
然而,问题是django-notifications会在队列时间挑选上下文字典。这就是locals()技巧失败的地方 - 来自本地的字典在局部变量之外有很多废话(例如它有 import 和int())。由当地人创建的字典不会发泡。
我看到三个选项:1)重写django-notifications的排队方法,在模板存储之前呈现模板(简单但有点乏味并打破升级性)2)停止使用本地技巧并开始重复自己3)尝试找一个较轻的版本的当地人(或一种腌制当地人的方式)。
我在这里希望有人能够领导#3。
如果它可能是相关的,这是我尝试使用locals()快捷方式进行pickle时出现的错误:
TypeError: can't pickle ellipsis objects
此外,locals()的字典输出:
{
'__builtins__':
{
'bytearray': <type 'bytearray'>,
'IndexError': <type 'exceptions.IndexError'>,
'all': <built-in function all>,
'help': Type help() for interactive help,
or help(object) for help about object.,
'vars': <built-in function vars>,
'SyntaxError': <type 'exceptions.SyntaxError'>,
'unicode': <type 'unicode'>,
'UnicodeDecodeError': <type 'exceptions.UnicodeDecodeError'>,
'isinstance': <built-in function isinstance>,
'copyright': Copyright (c) 2001-2010 Python Software Foundation.
All Rights Reserved.
Copyright (c) 2000 BeOpen.com.
All Rights Reserved.
Copyright (c) 1995-2001 Corporation for National Research Initiatives.
All Rights Reserved.
Copyright (c) 1991-1995 Stichting Mathematisch Centrum,
Amsterdam.
All Rights Reserved.,
'NameError': <type 'exceptions.NameError'>,
'BytesWarning': <type 'exceptions.BytesWarning'>,
'dict': <type 'dict'>,
'input': <built-in function input>,
'oct': <built-in function oct>,
'bin': <built-in function bin>,
'SystemExit': <type 'exceptions.SystemExit'>,
'StandardError': <type 'exceptions.StandardError'>,
'format': <built-in function format>,
'repr': <built-in function repr>,
'sorted': <built-in function sorted>,
'False': False,
'RuntimeWarning': <type 'exceptions.RuntimeWarning'>,
'list': <type 'list'>,
'iter': <built-in function iter>,
'reload': <built-in function reload>,
'Warning': <type 'exceptions.Warning'>,
'__package__': None,
'round': <built-in function round>,
'dir': <built-in function dir>,
'cmp': <built-in function cmp>,
'set': <type 'set'>,
'bytes': <type 'str'>,
'reduce': <built-in function reduce>,
'intern': <built-in function intern>,
'issubclass': <built-in function issubclass>,
'Ellipsis': Ellipsis,
'EOFError': <type 'exceptions.EOFError'>,
'locals': <built-in function locals>,
'BufferError': <type 'exceptions.BufferError'>,
'slice': <type 'slice'>,
'FloatingPointError': <type 'exceptions.FloatingPointError'>,
'sum': <built-in function sum>,
'getattr': <built-in function getattr>,
'abs': <built-in function abs>,
'exit': Use exit() or Ctrl-D (i.e. EOF) to exit,
'print': <built-in function print>,
'True': True,
'FutureWarning': <type 'exceptions.FutureWarning'>,
'ImportWarning': <type 'exceptions.ImportWarning'>,
'None': None,
'hash': <built-in function hash>,
'ReferenceError': <type 'exceptions.ReferenceError'>,
'len': <built-in function len>,
'credits': Thanks to CWI,
CNRI,
BeOpen.com,
Zope Corporation and a cast of thousands
for supporting Python development. See www.python.org for more information.,
'frozenset': <type 'frozenset'>,
'__name__': '__builtin__',
'ord': <built-in function ord>,
'super': <type 'super'>,
'_': None,
'TypeError': <type 'exceptions.TypeError'>,
'license': Type license() to see the full license text,
'KeyboardInterrupt': <type 'exceptions.KeyboardInterrupt'>,
'UserWarning': <type 'exceptions.UserWarning'>,
'filter': <built-in function filter>,
'range': <built-in function range>,
'staticmethod': <type 'staticmethod'>,
'SystemError': <type 'exceptions.SystemError'>,
'BaseException': <type 'exceptions.BaseException'>,
'pow': <built-in function pow>,
'RuntimeError': <type 'exceptions.RuntimeError'>,
'float': <type 'float'>,
'MemoryError': <type 'exceptions.MemoryError'>,
'StopIteration': <type 'exceptions.StopIteration'>,
'globals': <built-in function globals>,
'divmod': <built-in function divmod>,
'enumerate': <type 'enumerate'>,
'apply': <built-in function apply>,
'LookupError': <type 'exceptions.LookupError'>,
'open': <built-in function open>,
'quit': Use quit() or Ctrl-D (i.e. EOF) to exit,
'basestring': <type 'basestring'>,
'UnicodeError': <type 'exceptions.UnicodeError'>,
'zip': <built-in function zip>,
'hex': <built-in function hex>,
'long': <type 'long'>,
'next': <built-in function next>,
'ImportError': <type 'exceptions.ImportError'>,
'chr': <built-in function chr>,
'xrange': <type 'xrange'>,
'type': <type 'type'>,
'__doc__': "Built-in functions,
exceptions,
and other objects.\n\nNoteworthy: None is the `nil' object; Ellipsis represents `...' in slices.",
'Exception': <type 'exceptions.Exception'>,
'tuple': <type 'tuple'>,
'UnicodeTranslateError': <type 'exceptions.UnicodeTranslateError'>,
'reversed': <type 'reversed'>,
'UnicodeEncodeError': <type 'exceptions.UnicodeEncodeError'>,
'IOError': <type 'exceptions.IOError'>,
'hasattr': <built-in function hasattr>,
'delattr': <built-in function delattr>,
'setattr': <built-in function setattr>,
'raw_input': <built-in function raw_input>,
'SyntaxWarning': <type 'exceptions.SyntaxWarning'>,
'compile': <built-in function compile>,
'ArithmeticError': <type 'exceptions.ArithmeticError'>,
'str': <type 'str'>,
'property': <type 'property'>,
'GeneratorExit': <type 'exceptions.GeneratorExit'>,
'int': <type 'int'>,
'__import__': <built-in function __import__>,
'KeyError': <type 'exceptions.KeyError'>,
'coerce': <built-in function coerce>,
'PendingDeprecationWarning': <type 'exceptions.PendingDeprecationWarning'>,
'file': <type 'file'>,
'EnvironmentError': <type 'exceptions.EnvironmentError'>,
'unichr': <built-in function unichr>,
'id': <built-in function id>,
'OSError': <type 'exceptions.OSError'>,
'DeprecationWarning': <type 'exceptions.DeprecationWarning'>,
'min': <built-in function min>,
'UnicodeWarning': <type 'exceptions.UnicodeWarning'>,
'execfile': <built-in function execfile>,
'any': <built-in function any>,
'complex': <type 'complex'>,
'bool': <type 'bool'>,
'ValueError': <type 'exceptions.ValueError'>,
'NotImplemented': NotImplemented,
'map': <built-in function map>,
'buffer': <type 'buffer'>,
'max': <built-in function max>,
'object': <type 'object'>,
'TabError': <type 'exceptions.TabError'>,
'callable': <built-in function callable>,
'ZeroDivisionError': <type 'exceptions.ZeroDivisionError'>,
'eval': <built-in function eval>,
'__debug__': True,
'IndentationError': <type 'exceptions.IndentationError'>,
'AssertionError': <type 'exceptions.AssertionError'>,
'classmethod': <type 'classmethod'>,
'UnboundLocalError': <type 'exceptions.UnboundLocalError'>,
'NotImplementedError': <type 'exceptions.NotImplementedError'>,
'AttributeError': <type 'exceptions.AttributeError'>,
'OverflowError': <type 'exceptions.OverflowError'>
},
'notification': <module 'notification.models' from '/home/b/webapps/myapp/notification/models.pyc'>,
'u': <User: abcd>,
'User': <class 'django.contrib.auth.models.User'>
}
答案 0 :(得分:2)
请允许我提出使用locals()
class Object(object):
pass
def foo():
result = Object()
result.my_var = 'bar'
your_var = 'not to be returned'
result.var2 = 'baz' + result.my_var + len(your_var)
return result.__dict__
另一种选择是在创建对象时将对象添加到上下文中。
def foo():
result = {}
result['my_var'] = my_var = 'bar'
your_var = 'not to be returned'
result['var2'] = var2 = 'baz' + my_var + len(your_var)
return result
尽管如此,请确保每次修改变量时(或至少是最后一次)都会发生多次分配。
编辑 您应该使用第二个版本。我确定使用上下文字典(result
或{{1}的其他按键操作或者其他什么)不觉得很干,但让我告诉你,这实际上是一件好事。 Python的Zen声明“明确比隐含更好。”当你返回ctx
的值时,你回来谁知道什么。全局命名空间中的所有内容,嵌套命名空间中的所有内容,您可能进行的每个中间计算,所有这些内容都会隐式返回给调用者。
如果您为要返回的值创建容器,则表明您的意图,在
之间划清界限locals()
和
this_is_for_me = 'foo'
代码中的区别在于公开,供他人使用;和私人,可能会有变化,具体实施。调用者也很清楚,因为这些私有值根本不可用。
如果你正在整合一个永远不会使用result['this_is_for_you'] = 'bar'
魔法的外部库,你应该对你在何处以及如何使用它非常犹豫。我可能更喜欢修补代码,而不是任何其他可用选项。
答案 1 :(得分:0)
您可以将所有内容存储在不属于全局变量的本地中。
答案 2 :(得分:0)
没有。如果你要泡菜,它值得重复自己。许多物体,其中一些不直观,无法被腌制(即形式输入)。
仅当您确定将立即呈现模板时,才应使用locals()快捷方式。
答案 3 :(得分:0)
我在locals()
的代码段中看不到任何“不可拾取”的代码片段。与dill。
Dill几乎可以在python中序列化任何内容,并且还有some good tools用于帮助您了解在代码失败时导致酸洗失败的原因。只要django
使用pickle
而不使用cPickle
,您只需将pickle扩展为序列化EllipsisType
之类的内容即可:
>>> import dill
>>> # this will enable python's pickle to pickle almost everything dill can pickle
>>>
>>> # on the full set of dill's types, this usually works unless there's a generator
>>> # or an interator-type or something odd like a traceback object in locals
>>> dill.loads(dill.dumps(locals()))
>>> ...
>>> # if you get a pickling error, use dill's tools to figure out a workaround
>>> dill.detect.badobjects(your_bad_object, depth=0)
>>> dill.detect.badobjects(your_bad_object, depth=1)
>>> ...
如果您绝对想要,可以使用dill的badobjects
(或其他检测功能之一)以递归方式潜入locals()
参考链中的所有内容,并弹出不可传递的对象,而不是像上面那样在每个深度调用它。