0
我想在Angular2組件中加載js文件(https://static.opentok.com/v2.11/js/opentok.js)。如何從url中使用require導入js腳本require
有沒有什麼辦法可以使用「require()」來達到這個目的。
我想在Angular2組件中加載js文件(https://static.opentok.com/v2.11/js/opentok.js)。如何從url中使用require導入js腳本require
有沒有什麼辦法可以使用「require()」來達到這個目的。
是的。我們最近發佈了opentok.js上NPM:https://www.npmjs.com/package/@opentok/client
你可以這樣做:
var OT = require('@opentok/client');
var publisher = OT.initPublisher();
從此你可以使用OT
像平時那樣。