叫我JSAngular2Demo.js在apps文件夾包含一個簡單的函數: -JavaScript函數沒有得到來自打字稿
function sample()
{
alert("sample");
}
我想打電話從apps.component.ts
對於這個這個功能: -
import {Component} from "@angular/core";
import "app/JSAngular2Demo.js";
declare function sample(): any;
@Component({ selector: "my-app", templateUrl:"app/UIAngular.html" })
export class AppComponent {
strWelcomeMessage: string = "Welcome Sagar";
constructor() {
sample.prototype.sample();
}
}
但是這個函數沒有被調用。
可能的原因是什麼?
下爲什麼你們不使用打字稿? –