2016-12-13 58 views
2

如何在Angular2頁面視圖中包含這個外部java腳本庫。如何在Angular2運行時包含腳本標籤?

我想包括這個

<!-- google maps javascript --> 
<script src="//maps.googleapis.com/maps/api/js?key=#######&sensor=true"></script> 

所以,當這頁是鑑於該庫被加載並開始工作。

+1

http://stackoverflow.com/questions/35570746/angular2-including-thirdparty-js-scripts-in-component/35570783#35570783 –

+0

好,謝謝,我會包括這個參考 –

回答

2

你不行。
出於安全原因,Angular處理器刪除模板文件中的所有腳本標記。


替代方案:

  • 把你的腳本在index.html
  • 導入它直接使用import 'path/to/file'您的組件.ts文件。
+0

如何將googlmaps在腳本運行 ? –

+1

爲什麼不'import'//maps.googleapis.com/maps/api/js?key = #######&sensor = true''? (在需要腳本的組件中,組件需要它的依賴關係) –

+0

您可以在小提琴手上展示示例,或者請聯繫 –

相關問題