How to call JavaScript functions from Typescript in Angular 5?

后端 未结 2 1982
谎友^
谎友^ 2020-11-28 23:48

I\'m working on PDF Viewer development in Angular 5. I\'m done with writing HTML code for the UI part. Now I\'ve JavaScript files that provide functionality for the UI eleme

2条回答
  •  半阙折子戏
    2020-11-29 00:22

    1. How and where to include JavaScript Files in Angular Project?

    You need to include your JS file in the asset folder and refer this JS file in .angular-cli.json file.

    Refer the snapshot's,

    Folder structure should be like this.

    .angular-cli.json

    2. How to call the JavaScript Functions from Typescript class?

    your TS should be like this.

    myJsFile.js file content.

    This sample logic mentioned above will work, I have tried and tested using version 4, So I am expecting it to work with version 5 also.

    Please see the GitHub repo (Angular8)

提交回复
热议问题