摘要: form 也没什么可说的,我只给一个例子大家就懂了form modelfrom django import formsclass UserForm(forms.Form): username = forms.CharField(label='UserName', max_length=100)... 阅读全文
posted @ 2015-08-12 17:59 LeslieFang 阅读(224) 评论(0) 推荐(0) 编辑
摘要: CRUD 也没什么可说的,django 提供了完善的 orm api, 直接用就行了。我只贴几个列子,一看就明白了,自己再用用就熟了。# createb = Blog(name='Beatles Blog', tagline='All the latest Beatles news.')b.save... 阅读全文
posted @ 2015-08-12 17:32 LeslieFang 阅读(369) 评论(0) 推荐(0) 编辑