摘要: django文件上传 上传图片 1、model中定义属性类型为models.ImageField类型pic=models.ImageField(upload_to='images/upload/') 2、如果属性类型为ImageField需要安装包Pilowpip install Pillow==3 阅读全文
posted @ 2017-01-17 20:27 redis3389 阅读(258) 评论(0) 推荐(0)
摘要: django框架(View) URLconf 1、设置1、在settings.py文件中通过ROOT_URLCONF指定根级url的配置 2、urlpatterns是一个url()实例的列表 3、一个url()对象包括:正则表达式视图函数名称name 4、编写URLconf的注意:1、若要从url中 阅读全文
posted @ 2017-01-17 20:25 redis3389 阅读(247) 评论(0) 推荐(0)