jeecgboot 报错 Uncaught (in promise) Error: 请求出错,请稍候重试 transformRequestHook index.ts:87 request Axios.ts:225 promise callback*request/< Axios.ts:222 request Axios.ts:219 post Axios.ts:192 querystopro sqlservertest.ts:9 querydiscount SqlserverTestTable.vue:37 created SqlserverTestTable.vue:29 callWithErrorHandling runtime-core.esm-bundler.js:158 callWithAsyncErrorHandling runtime-core.esm-bundler.js:166 callHook runtime-core.esm-bundler.js:350
时间: 2024-03-27 20:35:46 浏览: 179
jeecgboot3.0.0的sql无错版。直接导入Navicat新建查询即可。亲测可用。oracle11g的。
这个错误提示是在使用 Axios 发送请求时出现的,可能是因为请求出现了错误,导致 Promise 被拒绝(rejected)。你可以按照以下步骤进行排查:
1. 查看请求的 URL 是否正确,是否能够正常访问,可以在浏览器中尝试访问该 URL 看是否能够获取到数据。
2. 检查请求参数是否正确,例如请求方法、请求头、请求体等是否符合要求。
3. 检查后台服务是否正常运行,是否能够正常响应请求。
4. 在发送请求时,可以使用 try-catch 捕获异常,然后在 catch 中打印错误信息,例如:
```javascript
try {
const response = await axios.get('/api/data');
console.log(response.data);
} catch (error) {
console.error(error);
// 处理请求错误
}
```
这样可以更直观地查看错误信息,帮助你进行排查。
阅读全文