js類的constructor中不支持異步函數嗎?

解決方案:ios

1.若是是普通函數,能夠用async 和await來解決你的問題
但你這個是在constructor裏,constructor 的做用是返回一個對像實例,若是加了async就變成返回一個promise了,因此這個方法行不通,由於作不到既返回一個promise又返回一個object 實例typescript

eg:axios

class ShopCarTool{ constructor(store,from_async){ // var shopCar = DB.getItem('shop-car').toJson()// 從localStorage獲取 /* 從服務器獲取 */ if(!from_async){ DB.setItem('shop-car', JSON.stringify(shopCar = {})) } this.$store = store this.shopCarDB = from_async } static async build(store){ let data = await axios.get(url) return new ShopCarTool(store,async_result); } length() {//獲取購物車商品數量小角標 var n = 0; for(var i in this.shopCarDB){ n += this.shopCarDB[i].length } return n } }
因此你哪你要實例化也改爲(tips: 代碼沒有通過嚴格驗證,就是這麼個意思,)
var tool = await ShopCarTool.build(store)
相關文章
相關標籤/搜索