Deshun 发布于 1年前 (2023-09-01) 675℃
赞 (6)
使用 Promise 处理正常情况下,await 命令后面是一个 Promise 对象。所以它本身就可以使用 .catch 来捕获异常,处理 loading 状态的操作,完全可以在 .catch 进行处理,然后用 if 判断来控制提前退出,没必要写 try-catch 这种冗余代码。setLoading(true);
let res = await get...
标签:
promise
/ async
/ await
/ try
/ catch
Deshun 发布于 4年前 (2020-12-18) 2223℃
赞 (0)
try 不仅可以和 catch 搭配食用,还有一个 finally 语句块。try {
console.log('try块内log')
return 'try中的return'
} catch (error) {
console.log(...
标签:
ESLint
/ 代码规范
/ 报错
/ javascript
/ try
/ finally
Deshun 发布于 4年前 (2020-12-17) 1565℃
赞 (0)
封装了一个方法来查询银行 logo 的文件名,然后使用 require 引用。<image
class="iconImg"
:src="require(`@/static/icons/setting/bankIcon/${this.getCodeWitName(name)}.png`)"
/>...
标签:
JavaScript
/ js
/ ja教程
/ try
/ catch
/ 处理异常
/ require