1

我该如何使用

协程库

在浏览器的客户端应用程序中?

4

2 回答 2

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);
    })
})();
于 2017-01-09T08:55:19.703 回答
0

当然可以,你需要转换你的代码(使用 babel 和regenerator 插件),它工作正常!

于 2017-01-14T13:09:17.657 回答