我该如何使用
在浏览器的客户端应用程序中?
只是为了测试。不要在生产中使用。
(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);
})
})();
当然可以,你需要转换你的代码(使用 babel 和regenerator 插件),它工作正常!