答案 0 :(得分:0)
仅供测试。不要在生产中使用。
(function () {
$.ajax({
type: 'GET',
url: 'https://raw.githubusercontent.com/tj/co/master/index.js',
async: false,
}).done(function (source) {
var module = {exports: {}};
var exports = module.exports;
eval(source); // run the source of co
window.co = module.exports; // bind co to window
console.log(window.co);
}).fail(function (xhr, textStatus, statusText) {
console.log(textStatus, statusText);
})
})();
答案 1 :(得分:0)
当然,你可以,你需要转换你的代码(使用带有regenerator plugin的babel),并且它正常工作!