默认参数问题
来源:7-5 编辑和修改登录人信息
合法俊哥
2019-10-06
统一渲染方法
’’'
def ops_render( template,context = {} ):
if ‘current_user’ in g:
context[‘current_user’] = g.current_user
return render_template( template,**context )
‘’'
老师这里的默认参数context={}为一个可变参数,不会有问题吗?
写回答
1回答
-
编程浪子
2019-10-07
你好
能否把你说的问题和担心描述下?
022019-10-08
相似问题