比如想写一个回调,可以用promise: function a(){ return new Promise(function(res,rej){
res()
})
}
a().then()但是现在希望代码能直接在浏览器运行,而不是经过webpack(ES6转5).那么用var a = function(x){x();}
a(function(){ console.log('回调')
})//↑像这样的写法会不会存在什么问题?比如兼容等等
添加回答
举报
0/150
提交
取消