11 2017 档案

摘要:Python免费视频含配套文件QQ124111294 https://pan.baidu.com/s/1bL5ml4 python.exe manage.py startapp app01 python.exe manage.py startapp app02 执行 阅读全文
posted @ 2017-11-30 21:08 颜言 阅读(421) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2017-11-24 21:01 颜言 阅读(283) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2017-11-24 20:51 颜言 阅读(140) 评论(0) 推荐(0)
摘要:1、Django请求的生命周期 路由系统 -> 试图函数(获取模板+数据=》渲染) -> 字符串返回给用户 2、路由系统 /index/ -> 函数或类.as_view() /detail/(\d+) -> 函数(参数) 或 类.as_view()(参数) /detail/(... 阅读全文
posted @ 2017-11-24 19:52 颜言 阅读(202) 评论(0) 推荐(0)
摘要:Django用户登陆以及跳转后台管理页面1http://www.cnblogs.com/ujq3/p/7891774.html Django用户登陆以及跳转后台管理页面2http://www.cnblogs.com/ujq3/p/7891901.html 1 from django.shortcut 阅读全文
posted @ 2017-11-24 19:16 颜言 阅读(425) 评论(0) 推荐(0)
摘要:请先写好以下,再来替换文件 Django用户登陆以及跳转后台管理页面1http://www.cnblogs.com/ujq3/p/7891774.html 1 from django.shortcuts import render 2 # Create your views here. 3 4 fr 阅读全文
posted @ 2017-11-24 18:34 颜言 阅读(439) 评论(0) 推荐(0)
摘要:1 """S14Djngo URL Configuration 2 3 The `urlpatterns` list routes URLs to views. For more information please see: 4 https://docs.djangoproject.com/en/ 阅读全文
posted @ 2017-11-24 18:01 颜言 阅读(5135) 评论(0) 推荐(0)
摘要:1 RuntimeError at /login 2 You called this URL via POST, but the URL doesn't end in a slash and you have APPEND_SLASH set. Django can't redirect to th 阅读全文
posted @ 2017-11-24 17:22 颜言 阅读(1467) 评论(0) 推荐(0)
摘要:1 from django.shortcuts import render 2 # Create your views here. 3 4 from django.shortcuts import render 5 from django.shortcuts import redirect #重新定 阅读全文
posted @ 2017-11-24 16:45 颜言 阅读(4763) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2017-11-24 13:50 颜言 阅读(157) 评论(0) 推荐(0)
摘要:1 /*! jQuery v1.12.3 | (c) jQuery Foundation | jquery.org/license */ 2 !function(a,b){"object"==typeof module&&"object"==typeof module.exports?module. 阅读全文
posted @ 2017-11-24 13:03 颜言 阅读(2521) 评论(0) 推荐(0)
摘要:1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>Title</title> 6 7 </head> 8 <body> 9 <h1>asdad</h1> 10 <h1>asdad</h1> 阅读全文
posted @ 2017-11-23 16:43 颜言 阅读(589) 评论(0) 推荐(0)
摘要:1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>Title</title> 6 7 <script type ="text/javascript"> 8 //javascript代码 9 阅读全文
posted @ 2017-11-23 16:01 颜言 阅读(140) 评论(0) 推荐(0)
摘要:1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>Title</title> 6 7 <script src="commons.js"></script> 8 9 </head> 10 <b 阅读全文
posted @ 2017-11-23 15:52 颜言 阅读(463) 评论(0) 推荐(0)
摘要:1 pycharm快捷键及一些常用设置 2 3 Alt+Enter 自动添加包 4 shift+O 自动建议代码补全 5 Ctrl+t SVN更新 6 Ctrl+k SVN提交 7 Ctrl + / 注释(取消注释)选择的行 8 Ctrl+Shift+F 高级查找 9 Ctrl+Enter 补全 1 阅读全文
posted @ 2017-11-23 15:37 颜言 阅读(724) 评论(0) 推荐(0)
摘要:1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>Title</title> 6 </head> 7 <body> 8 <input type="text" id="user"> 9 <in 阅读全文
posted @ 2017-11-23 15:18 颜言 阅读(119) 评论(0) 推荐(0)
摘要:1、配置模板的路径 1 TEMPLATES = [ 2 { 3 'BACKEND': 'django.template.backends.django.DjangoTemplates', 4 'DIRS': [os.path.join(BASE_DIR, 'templates')] 5 , 6 'A 阅读全文
posted @ 2017-11-23 14:50 颜言 阅读(824) 评论(0) 推荐(0)
摘要:1 from django.shortcuts import render 2 3 # Create your views here. 4 5 6 7 from django.shortcuts import render 8 9 def login(request): 10 11 return r 阅读全文
posted @ 2017-11-23 14:06 颜言 阅读(356) 评论(0) 推荐(0)
摘要:1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>Title</title> 6 <style> 7 label{ 8 width:80px; 9 text-align:right; 10 阅读全文
posted @ 2017-11-23 13:43 颜言 阅读(338) 评论(0) 推荐(0)
摘要:1 from django.shortcuts import render 2 3 # Create your views here. 4 5 6 from django.shortcuts import HttpResponse 7 8 def login(request): 9 string = 阅读全文
posted @ 2017-11-23 13:19 颜言 阅读(246) 评论(0) 推荐(0)
摘要:1 from django.shortcuts import render 2 3 # Create your views here. 4 5 6 from django.shortcuts import HttpResponse 7 8 9 def home(request): 10 return 阅读全文
posted @ 2017-11-23 12:36 颜言 阅读(314) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2017-11-23 12:08 颜言 阅读(303) 评论(0) 推荐(0)
摘要:manage.py startapp cmdb 如果运行错误记得加环境变量 c:\python35\python.exe manage.py startapp cmdb 阅读全文
posted @ 2017-11-23 11:44 颜言 阅读(544) 评论(0) 推荐(0)
摘要:Python之常用文件操作 阅读全文
posted @ 2017-11-23 11:33 颜言 阅读(138) 评论(0) 推荐(0)
摘要:如果不是在JetBrains PyCharm 2017.2里创建的想在JetBrains PyCharm 2017.2里运行。可以在 编辑结构 进行配置正常使用 阅读全文
posted @ 2017-11-23 11:13 颜言 阅读(565) 评论(0) 推荐(0)
摘要:在JetBrains PyCharm 2017.2里选择 文件(F) 新项目 点击 三角形 运行 修改Urls.py 1 """S14Djngo URL Configuration 2 3 The `urlpatterns` list routes URLs to views. For more i 阅读全文
posted @ 2017-11-23 00:05 颜言 阅读(325) 评论(0) 推荐(0)
摘要:Bottle是一个快速、简洁、轻量级的基于WSIG的微型Web框架,此框架只由一个 .py 文件,除了Python的标准库外,其不依赖任何其他模块。 Bottle框架大致可以分为以下部分: 路由系统,将不同请求交由指定函数处理 模板系统,将模板中的特殊语法渲染成字符串,值得一说的是Bottle的模板 阅读全文
posted @ 2017-11-22 23:51 颜言 阅读(649) 评论(0) 推荐(0)
摘要:1 django 模块 2 3 一 安装: 4 5 方法一: 6 (在 JetBrains PyCharm 2017.2 软件的) 设置 (里找到) 项目:python +(添加) 7 (搜索) django Install package 8 9 方法二: 10 在WIN操作系统里的CMD里执行 阅读全文
posted @ 2017-11-22 23:06 颜言 阅读(896) 评论(0) 推荐(0)