如何在Angular2頁面視圖中包含這個外部java腳本庫。如何在Angular2運行時包含腳本標籤?
我想包括這個
<!-- google maps javascript -->
<script src="//maps.googleapis.com/maps/api/js?key=#######&sensor=true"></script>
所以,當這頁是鑑於該庫被加載並開始工作。
如何在Angular2頁面視圖中包含這個外部java腳本庫。如何在Angular2運行時包含腳本標籤?
我想包括這個
<!-- google maps javascript -->
<script src="//maps.googleapis.com/maps/api/js?key=#######&sensor=true"></script>
所以,當這頁是鑑於該庫被加載並開始工作。
你不行。
出於安全原因,Angular處理器刪除模板文件中的所有腳本標記。
替代方案:
index.html
import 'path/to/file'
您的組件.ts
文件。如何將googlmaps在腳本運行 ? –
爲什麼不'import'//maps.googleapis.com/maps/api/js?key = #######&sensor = true''? (在需要腳本的組件中,組件需要它的依賴關係) –
您可以在小提琴手上展示示例,或者請聯繫 –
http://stackoverflow.com/questions/35570746/angular2-including-thirdparty-js-scripts-in-component/35570783#35570783 –
好,謝謝,我會包括這個參考 –