我的问题是我想在app.ts文件中使用我的Appointment类。
我在我的应用程序中引用它:
/// <reference path="Appointment.ts"/>
然后我实例化它并打印clientID:
var app : Appointment = new Appointment(1, 2, "User", 3);;
console.log(app.ClientID);
然后我得到ReferenceError: Appointment is not defined
我还将约会的.js脚本添加到我的html文件中。
我的预约看起来像这样:
class Appointment {
// some properties
constructor(clientID: number, state: number, userCreated: string, activityID: number) {
// constructor
}
}
答案 0 :(得分:1)
您的脚本引用应如下所示(顺序很重要...... .js
文件扩展名也很重要!)
<script src="Appointment.js"></script>
<script src="app.js"></script>