django
models中写
file = FileField('选择文档',upload_to='documents/%Y/%m/%d')
upload_to的路径前面不带斜杆,如果写成'/documents/%Y/%m/%d'
可能会出现如下错误
Attempted access to '/documents/%Y/%m/%d'' denied.
摘自 哇牛
补充:Web开发 , Python ,
上一个:[python]python 动态调用模块&类&方法下一个:python re正则表达式实例2