django中locals()函数的使用

第一次看djangobook时比较马虎,也没重视,后来看很多人用到Locals(),发现很简单,也很方便


首先Python 的内建函数 locals() 。它返回的字典对所有局部变量的名称与值进行映射,

意思类似于字典  { ‘now’:datetime.dateteime.now() }与 now=datetime.datetime.now()一个意思,

locals()返回值正好和Context({'now':now})构造参数一致。

def current_datetime(request):
    current_date = datetime.datetime.now()
    return render_to_response('current_datetime.html', locals())
模板一定要写成

<p>{{current_date}}</p>  模板里的要渲染的参数必须和你试图函数变量的名字一致。

你可能感兴趣的:(django中locals()函数的使用)