摘要: 现象: Forbidden (403)CSRF verification failed. Request aborted.HelpReason given for failure:CSRF token missing or incorrect.In general, this can occur w 阅读全文
posted @ 2018-01-10 18:58 星辰之力 阅读(19754) 评论(0) 推荐(0) 编辑
摘要: object.__str__(self) Called by the str() built-in function and by the print statement to compute the “informal” string representation of an object. Th 阅读全文
posted @ 2018-01-10 16:14 星辰之力 阅读(339) 评论(0) 推荐(0) 编辑
摘要: 学习Django中:试着着写一个用户注册登录系统,开始搞事情 O(∩_∩)O哈哈~ Ubuntu python 2.7.12 Django 1.10.4 IDE:Pycharm Bootstrap(其实没怎么用~~) 新建项目:(我是直接用pycharm直接生成的) 使用终端: (创建项目)djan 阅读全文
posted @ 2018-01-10 15:37 星辰之力 阅读(6384) 评论(0) 推荐(0) 编辑
摘要: 问题背景: 使用pycharm创建完成django项目(项目名称为:mydjangopro,app名称为my_blog) , 本想登录后台直接输入地址:http://127.0.0.1:8000/admin后,登录页面出现了,随便(username:admin,password:admin)输入了账 阅读全文
posted @ 2018-01-10 14:49 星辰之力 阅读(608) 评论(0) 推荐(0) 编辑
摘要: 最全Pycharm教程 阅读全文
posted @ 2018-01-10 14:15 星辰之力 阅读(289) 评论(0) 推荐(0) 编辑
摘要: 准备工作: 假设读者已经安装好python 2x或3x,以及安装好Django,以及Pycharm。 我的配置: – Python 2.7.11 – Pycharm Professional 5.0.4 (专业版集成了Django, Community Edition没有集成) 1. 创建一个新的工 阅读全文
posted @ 2018-01-10 14:12 星辰之力 阅读(731) 评论(0) 推荐(0) 编辑
摘要: pycharm是python的一个商业的集成开发工具,本人感觉做python开发还是很好用的,django是一个很流行的python web开源框架,本文就是使用pycharm+django来开发python web项目,下面直接开始 1.安装pytcharm和django,关于安装没有什么好说的, 阅读全文
posted @ 2018-01-10 11:21 星辰之力 阅读(12310) 评论(0) 推荐(2) 编辑
摘要: 使用python进行程序编写时,经常会使用第三方模块包。这种包我们可以通过python setup install 进行安装后,通过import XXX或from XXX import yyy 进行导入。不过如果是自己遍写的依赖包,又不想安装到python的相应目录,可以放到本目录里进行import 阅读全文
posted @ 2018-01-10 11:05 星辰之力 阅读(268) 评论(0) 推荐(0) 编辑