上一页 1 2 3 4 5 6 7 ··· 9 下一页
摘要: 报错: newsDetailed:1 Access to XMLHttpRequest at 'http://www.py32api.com:8000/users/uploadFile/' from origin 'http://localhost:8080' has been blocked by 阅读全文
posted @ 2023-12-22 10:11 笑而不语心自闲 阅读(134) 评论(0) 推荐(0) 编辑
摘要: confirm运行时,如果不加.catch捕获,会出现错误提示,解决办法: 方法1: vue.config.js中 关闭全局错误提示 module.exports = defineConfig({ transpileDependencies: true, lintOnSave: false, dev 阅读全文
posted @ 2023-11-16 21:02 笑而不语心自闲 阅读(1223) 评论(0) 推荐(0) 编辑
摘要: export function Team(data = {}) { return service.request({ method: "get", url: "https://example.com/api/endpoint", // 替换成实际的API端点 params: { param1: da 阅读全文
posted @ 2023-11-07 22:49 笑而不语心自闲 阅读(626) 评论(0) 推荐(0) 编辑
摘要: package.json中加入 Windows: "set NODE_OPTIONS openssl-legacy-provider && " Linux & Mac OS: "export NODE_OPTIONS openssl-legacy-provider && " 例如: "scripts 阅读全文
posted @ 2023-10-28 16:02 笑而不语心自闲 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 将"unplugin-auto-import"降低到"^0.5.11"版本 阅读全文
posted @ 2023-10-20 15:28 笑而不语心自闲 阅读(417) 评论(0) 推荐(0) 编辑
摘要: settings.py REST_FRAMEWORK = { 'EXCEPTION_HANDLER': 'xxx.exception_handler', } 新建.py文件,名称任意 xxx.py from django.db import DatabaseError from rest_frame 阅读全文
posted @ 2023-08-03 11:48 笑而不语心自闲 阅读(13) 评论(0) 推荐(0) 编辑
摘要: Python 3.5以下的版本: def add_numbers(a: int, b: int) -> int: return a + b Python 3.5以上的版本: def add_numbers(a, b): # type: (int, int) -> int return a + b 这 阅读全文
posted @ 2023-07-26 06:45 笑而不语心自闲 阅读(46) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2023-07-19 10:36 笑而不语心自闲 阅读(8) 评论(0) 推荐(0) 编辑
摘要: startapp时出现 CommandError: 'xxxxx' conflicts with the name of an existing Python module and cannot be used as an app name. Please try another name.错误 原 阅读全文
posted @ 2023-07-13 19:41 笑而不语心自闲 阅读(410) 评论(0) 推荐(0) 编辑
摘要: 通过pycharm新建app时,需要指定目录。因为manage.py和APP是在同一级目录下,不指定目录的话,新建的app会和APP在同一级。 1.首先先在APP目录下,新建一个和要建的app同名的文件夹,比如goods,删除多余的__init__.py文件,不然在创建的时候会缺少migration 阅读全文
posted @ 2023-07-02 13:25 笑而不语心自闲 阅读(135) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 9 下一页