上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 31 下一页
摘要: 得到 阅读全文
posted @ 2018-11-18 18:12 巨兽~墨菲特 阅读(138) 评论(0) 推荐(0) 编辑
摘要: import matplotlib.pyplot as plt import numpy as np # 绘制普通图像 x = np.linspace(-1, 1, 50) y1 = 2 * x + 1 y2 = x**2 plt.figure() plt.plot(x, y1) plt.plot( 阅读全文
posted @ 2018-11-16 10:51 巨兽~墨菲特 阅读(103) 评论(0) 推荐(0) 编辑
摘要: 设计一个数据库用户权限管理系统 模块导入模块 阅读全文
posted @ 2018-11-13 14:29 巨兽~墨菲特 阅读(127) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/wupeiqi/articles/5369773.html 532 阅读全文
posted @ 2018-11-13 13:36 巨兽~墨菲特 阅读(123) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style> #img img{ height: 200px; width: 200px; } </style> </head> 阅读全文
posted @ 2018-11-13 12:00 巨兽~墨菲特 阅读(123) 评论(0) 推荐(0) 编辑
摘要: from django.db import models # Create your models here. class User(models.Model): username=models.CharField(max_length=32) password=models.CharField(m 阅读全文
posted @ 2018-11-09 19:53 巨兽~墨菲特 阅读(223) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/buchizaodian/p/7076964.html 阅读全文
posted @ 2018-11-09 10:40 巨兽~墨菲特 阅读(77) 评论(0) 推荐(0) 编辑
摘要: www.cnblogs.com/alex3714/articles/5978329.html 1. ORM介绍 orm英文全称object relational mapping,就是对象映射关系程序,简单来说我们类似python这种面向对象的程序来说一切皆对象,但是我们使用的数据库却都是关系型的,为 阅读全文
posted @ 2018-11-08 09:22 巨兽~墨菲特 阅读(141) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/wupeiqi/articles/5237704.html https://code.ziqiangxuetang.com/django/django-middleware.html 我们从浏览器发出一个请求 Request,得到一个响应后的内容 Ht 阅读全文
posted @ 2018-11-07 13:08 巨兽~墨菲特 阅读(226) 评论(0) 推荐(0) 编辑
摘要: 两种方法取到cookie中的csrftoken 解决方案一、在所有ajax发送之前统一把csrftoken参数传入 1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>Title</title 阅读全文
posted @ 2018-11-07 11:28 巨兽~墨菲特 阅读(291) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 31 下一页