Angular 2 webpack加载外部库

时间:2016-10-08 01:20:10

标签: angular typescript

我正在我的应用程序中加载Wistia(视频嵌入服务)。脚本代码必须嵌入主index.html文件中,以便在我使用其嵌入代码的地方工作。有没有办法在特定组件中调用它?脚本加载缓慢,整个应用程序滞后直到加载完毕。

另外 - 有没有办法让它像一个函数,也许类似于loadWistia(),我可以在我需要的组件中包含它。如果是这样,这将是一个共享的NgModule的一部分,它被加载到任何地方,并且由于共享的NgModule长期使用这样的脚本而产生任何性能影响吗?

EDIT index.html

<!doctype html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <title>System</title>
    <base href="/">
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, shrink-to-fit=no">
    <meta http-equiv="x-ua-compatible" content="ie=edge">
    <link rel="icon" type="image/x-icon" href="favicon.ico">
    <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
    <link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300italic,400,400italic,600,600italic,700,700italic" rel="stylesheet" type="text/css">

    <!-- Wistia embed script -->
    <script charset="ISO-8859-1" src="//fast.wistia.com/assets/external/E-v1.js" async></script>
</head>
    <body>
        <app-root>Loading...</app-root>
    </body>
</html>

HTML嵌入式

<div class="wistia_embed wistia_async_j38ihh83m5 embed-responsive-item">&nbsp;</div>

0 个答案:

没有答案