我試圖在javascript客戶端中使用require(如node.js)而沒有轉譯器,並且沒有需要等待答案的任何回調或任何將我的代碼更改爲另一個代碼的東西,有人知道如何執行需要這樣的: var a = require('library.js'); //sctricly this syntax not require.js
a.method('HI', 12);
非常感謝
實例模塊:https://www.npmjs.com/package/qrcode 很容易對我來說,純JavaScript使用它: var QRCode = require('qrcode')
QRCode.toDataURL('I am a pony!', function (err, url) {
console.log(url)
})
但我不能用「規定」中的角,對不對?