如何导入特定于特定角度组件的javascript文件

时间:2019-02-14 13:02:18

标签: angular

我可以在angular.json中指定此文件路径,但是据我了解,它将被全局包含在所有组件中。

我只想仅在仪表板组件中导入特定的js文件。

dashboard.components.ts

import { Component, OnInit } from '@angular/core';
@import url('../../../node_modules/jquery-ui-dist/jquery-ui.min.js');

1 个答案:

答案 0 :(得分:0)

尝试以下方法

declare var $: any;

import '../../../node_modules/jquery-ui-dist/jquery-ui.min.js';
export class MemMonComponent {
    createSomething() {
        $("#yourelement").html('');
    }
}

必须将其放入AfterViewInit