摘要: { "emmet.excludeLanguages": ["markdown"], "emmet.includeLanguages": { "vue-html": "html", "vue": "html" }, // 保存时自动格式化 "editor.formatOnSave": true, "f 阅读全文
posted @ 2023-05-03 16:42 梦想有双休 阅读(37) 评论(0) 推荐(0) 编辑
摘要: pip 是 Python 包管理工具,该工具提供了对Python 包的查找、下载、安装、卸载的功能。 注意:Python 2.7.9 + 或 Python 3.4+ 以上版本都自带 pip 工具。 pip 官网:https://pypi.org/project/pip/ pip 最常用命令 显示版本 阅读全文
posted @ 2022-11-03 15:12 梦想有双休 阅读(289) 评论(0) 推荐(0) 编辑
摘要: 报错 Django3.x富文本kindeditor图片上传时图片不能加载显示到编辑器的输入框中,console中报错:Refused to display 'http://127.0.0.1:8000/' in a frame because it set 'X-Frame-Options' to 阅读全文
posted @ 2022-09-29 11:02 梦想有双休 阅读(1290) 评论(0) 推荐(0) 编辑
摘要: 报错 django.db.migrations.exceptions.InconsistentMigrationHistory: Migration admin.0001_initial is applied before its dependency blog. 0001_initial on d 阅读全文
posted @ 2022-09-16 20:18 梦想有双休 阅读(68) 评论(0) 推荐(0) 编辑
摘要: 权限问题 mysql创建用户 可以使用以下语句创建新的用户: CREATE USER 'username'@'host' IDENTIFIED BY 'password'; username:即将将创建的用户名 host:指定该用户在哪个主机上可以登陆 如果是本地用户可用localhost 如果想让 阅读全文
posted @ 2022-08-13 16:30 梦想有双休 阅读(880) 评论(0) 推荐(0) 编辑
摘要: 派生方法的实战演练(重要) 出现问题 json序列化python数据类型是有限制的,无法正常序列划会报错 import datetime import json d = { 't1': datetime.datetime.today(), # datetime.datetime.today() 无法 阅读全文
posted @ 2022-07-28 21:13 梦想有双休 阅读(36) 评论(0) 推荐(0) 编辑