2016-06-12 68 views

回答

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); 
    }) 
})(); 
0

當然可以,你需要transpile您的代碼(使用巴貝爾與regenerator plugin),以及它的正常工作!

相關問題