上一页 1 ··· 5 6 7 8 9 10 下一页
摘要: obj.user.has_perm('app1.can_del_school')True 阅读全文
posted @ 2017-05-25 10:25 mljqqh 阅读(136) 评论(0) 推荐(0) 编辑
摘要: from django.shortcuts import render,render_to_responsefrom app1 import modelsfrom django.core.paginator import Paginator,EmptyPage,PageNotAnInteger# C 阅读全文
posted @ 2017-05-22 10:37 mljqqh 阅读(149) 评论(0) 推荐(0) 编辑
摘要: from django.contrib import adminfrom app1 import models admin.site.register(models.Author)admin.site.register(models.Book)admin.site.register(models.P 阅读全文
posted @ 2017-05-20 03:00 mljqqh 阅读(148) 评论(0) 推荐(0) 编辑
摘要: a 在views中导入 from django.contrib.auth.decorators import login_required @login_required()b 在views 导入 from django.contrib.auth import authenticate def lo 阅读全文
posted @ 2017-05-19 09:31 mljqqh 阅读(179) 评论(0) 推荐(0) 编辑
摘要: 今天看了有点困 看了好久才写下来的 阅读全文
posted @ 2017-05-18 23:34 mljqqh 阅读(276) 评论(0) 推荐(0) 编辑
摘要: from django.shortcuts import HttpResponse, render, redirect 导入 user_info={'name':"mlj"}return render(request,"index.html",{"user":user_info}) 阅读全文
posted @ 2017-05-17 09:42 mljqqh 阅读(378) 评论(0) 推荐(0) 编辑
摘要: 忘记密码from django.contrib.auth.models import User user =User.objects.get(username='admin') user.set_password('new_password')user.aave()创建超级用户 python man 阅读全文
posted @ 2017-05-17 01:10 mljqqh 阅读(660) 评论(0) 推荐(0) 编辑
摘要: 变量就是可以随时变化的 可以被赋值 常量是是固定的值 不能被赋值 生活中的常量 比如 π 阅读全文
posted @ 2017-05-09 00:51 mljqqh 阅读(154) 评论(0) 推荐(0) 编辑
摘要: C语言的编译执行过程 :代码-》编译-》链接=》执行 编译指的是把代码编译编译成机器能识别的二进制 0 1 链接是就是经过编译的文件并不能立即就被执行,其中可能还有许多没有解决的问题。例如,某个源文件中的函数可能引用了另一个源文件中定义的某个符号(如变量或者函数调用等);在程序中可能调用了某个库文件 阅读全文
posted @ 2017-05-09 00:49 mljqqh 阅读(141) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> // 包含头文件stdio.h stdio 就是指 “standard input & output"(标准输入输出) h是head int main() //主函数{printf("Hello World!\n");//输出hello word 到黑窗口ret 阅读全文
posted @ 2017-05-09 00:35 mljqqh 阅读(106) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 下一页