上一页 1 2 3 4 5 6 7 8 9 ··· 32 下一页
摘要: 111 内置电池的意思就是,内置了很多功能,插件等等帮助文档:https://docs.djangoproject.com/en/3.0/ model,很多集成的东西,连接数据库等 vierm: Template:模板里面的数据再试图View进行交互 MVT模型 尽可能选择LTS进行开发 pip i 阅读全文
posted @ 2020-04-19 08:27 linux——quan 阅读(289) 评论(0) 推荐(0) 编辑
摘要: 连接两个或更多的路径名组件 import os p1 = '/date' p2 = 'mage' p3 = 'img' all = os.path.join(p1,p2,p3) print(all) 结果 /date\mage\img 自动添加反斜杆,\ import os p1 = '/date' 阅读全文
posted @ 2020-04-18 22:53 linux——quan 阅读(1002) 评论(0) 推荐(0) 编辑
摘要: 结果 部分代码: index.html; <body> <div class="header"> <div class="logo"> <img src="image/logo.png"> </div> <div class="menu" onmouseleave="show_menu1()"> < 阅读全文
posted @ 2020-04-17 19:58 linux——quan 阅读(278) 评论(0) 推荐(0) 编辑
摘要: 恢复内容开始 JavaScript,可以减少网页的规模,提高网页的浏览速度,丰富页面的表现和功能 HTML是进行基本结构的创建的,比如说表格和表单等, CSS是对HTML进行美化 JS,主要实现页面的功能 动态页面:与客户是否存在交互的页面,就是例如你在京东上面搜索东西,计算机给你响应的过程就是动态 阅读全文
posted @ 2020-04-15 09:03 linux——quan 阅读(284) 评论(0) 推荐(0) 编辑
摘要: 相对定位:之前的位置不会被其他所替换 绝对定位:会被替换用什么定位主要是看文档流是否需要被破坏 浮动和绝对定位的区别: 相对定位和浮动共同使用 使用浮动和相对定位主要的作用是可以进行宽度的设置 z-index的使用 值越大,越在上层 通常我们不会设置成为连续的数字 因为到时候可能会加入其他层叠,避免 阅读全文
posted @ 2020-04-11 16:21 linux——quan 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-04-10 21:58 linux——quan 阅读(162) 评论(0) 推荐(0) 编辑
摘要: mysql> USE mon Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A Datab 阅读全文
posted @ 2020-04-10 21:48 linux——quan 阅读(467) 评论(3) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-04-10 21:46 linux——quan 阅读(99) 评论(0) 推荐(0) 编辑
摘要: 结果 阅读全文
posted @ 2020-04-10 21:45 linux——quan 阅读(168) 评论(0) 推荐(0) 编辑
摘要: t = ("a","b","c",1,2) print(t) print(t[2]) print(t[-1]) print(t[1:4]) print('b' in t) #元组创建后不可变 #写入数据的函数也不支持 #特殊情况,如果元组内持有列表,那么列表的内容是允许被修改的 t2 = (['a' 阅读全文
posted @ 2020-04-10 21:44 linux——quan 阅读(172) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 32 下一页