我如何回复承诺或等待要求?

问题描述 投票:0回答:2

这是我的vuejs + webpack项目

如何返回承诺或等待require加载文件?

例如:

var myfile= require('./assets/myjson.json') // a big json file
console.log(myfile) //this sometime not printed correctly

有时console.log无法在控制台中正确打印对象

所以我想知道是否有可能像这样回复承诺

require('./assets/myjson.json').then(function(){ 
   // big file loaded completetly
   console.log(myfile) 
}

我必须在require回调后处理对象,我找不到这样做的方法

对象在enter image description here下面的控制台中打印

javascript webpack vue.js vuejs2 webpack-2
2个回答
© www.soinside.com 2019 - 2024. All rights reserved.