摘要:
报错: newsDetailed:1 Access to XMLHttpRequest at 'http://www.py32api.com:8000/users/uploadFile/' from origin 'http://localhost:8080' has been blocked by 阅读全文
摘要:
confirm运行时,如果不加.catch捕获,会出现错误提示,解决办法: 方法1: vue.config.js中 关闭全局错误提示 module.exports = defineConfig({ transpileDependencies: true, lintOnSave: false, dev 阅读全文
摘要:
export function Team(data = {}) { return service.request({ method: "get", url: "https://example.com/api/endpoint", // 替换成实际的API端点 params: { param1: da 阅读全文
摘要:
package.json中加入 Windows: "set NODE_OPTIONS openssl-legacy-provider && " Linux & Mac OS: "export NODE_OPTIONS openssl-legacy-provider && " 例如: "scripts 阅读全文
摘要:
将"unplugin-auto-import"降低到"^0.5.11"版本 阅读全文
摘要:
settings.py REST_FRAMEWORK = { 'EXCEPTION_HANDLER': 'xxx.exception_handler', } 新建.py文件,名称任意 xxx.py from django.db import DatabaseError from rest_frame 阅读全文
摘要:
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 这 阅读全文
摘要:
startapp时出现 CommandError: 'xxxxx' conflicts with the name of an existing Python module and cannot be used as an app name. Please try another name.错误 原 阅读全文
摘要:
通过pycharm新建app时,需要指定目录。因为manage.py和APP是在同一级目录下,不指定目录的话,新建的app会和APP在同一级。 1.首先先在APP目录下,新建一个和要建的app同名的文件夹,比如goods,删除多余的__init__.py文件,不然在创建的时候会缺少migration 阅读全文