老师们好,下面的代码如何优化比较好维护:
getAccountById(val).then(res=> {
getUserSourceInfo(res.content.orgSourceId).then(res => {
console.log("res:", res.content)
}). catch(res => {})
}) .catch(res => {})
目前没有想到好的优化方案
老师们好,下面的代码如何优化比较好维护:
getAccountById(val).then(res=> {
getUserSourceInfo(res.content.orgSourceId).then(res => {
console.log("res:", res.content)
}). catch(res => {})
}) .catch(res => {})
目前没有想到好的优化方案
### 优化方案
1. **使用 `async/await` 语法**:
`async/await` 可以使异步代码看起来更像同步代码,从而提高可读性和可维护性。
2. **错误处理**:
将错误处理逻辑集中管理,比如使用 `try/catch` 块。
3. **代码分解**:
将网络请求逻辑分解成多个函数,使每个函数职责单一,提高代码的可读性和可测试性。
### 优化后的代码
async function fetchAccountAndUserSourceInfo(val) {
try {
const account = await getAccountById(val);
const userSourceInfo = await getUserSourceInfo(account.content.orgSourceId);
console.log("res:", userSourceInfo.content);
} catch (error) {
console.error("Error fetching data:", error);
}
}
// 调用函数
fetchAccountAndUserSourceInfo(someValue);
### 解释
- **`async/await`**:使用 `async` 关键字定义异步函数,`await` 关键字等待 Promise 完成,使代码更加直观。
- **错误处理**:使用 `try/catch` 块集中处理可能出现的错误,避免在每个 `.then` 和 `.catch` 中重复错误处理逻辑。
- **代码分解**:将请求逻辑封装在 `fetchAccountAndUserSourceInfo` 函数中,使代码结构更加清晰,便于维护。
除了其他答主提到的 async/await
之外,也可以使用:
中间件方式
const finalResult = await fn1(fn2(fn3))
链式调用
fn1(args).fn2(args).fn3(args)
try {
const account = await getAccountById(val)
try {
const userSourceInfo = await getUserSourceInfo(account.content.orgSourceId)
console.log('res:', res.content)
} catch (err) {
// 错误处理
}
} catch (err) {
// 错误处理
}
8 回答4.5k 阅读✓ 已解决
6 回答3.1k 阅读✓ 已解决
5 回答2.7k 阅读✓ 已解决
5 回答6.2k 阅读✓ 已解决
4 回答2.2k 阅读✓ 已解决
3 回答2.4k 阅读
4 回答2.7k 阅读✓ 已解决