标签: javascript google-chrome google-chrome-extension bluebird
Promise.resolve(true).then(function(){console.log("run");});
此代码需要15-16秒才能将“运行”返回到控制台。
版本:
我在Chrome扩展程序背景页面中包含的脚本中运行它(通过<script>标记加载)。
<script>
该脚本使用browserify构建,bluebird包含在:
Promise = require('bluebird')
我认为chrome / node环境管理超时的方式存在差异?
有什么想法吗?