我无法在Chrome开发工具中尝试使用TypeScript调试工作。我为所有.ts文件生成了源映射,javascript看起来正确,但Chrome只加载index.html中引用的js文件并忽略所有模块。这有点意义,因为Typescript编译器似乎没有对我的模块做任何事情。如果有人可以在下面的例子中解释我做错了什么,那就太好了。
我的项目设置如下:
root/
src/
Company.ts
User.ts
app.ts
index.html
Company.ts
module Company {
export class Job {
public title:string;
public description:string;
constructor(title:string, desc:string){
this.title = title;
this.description = desc;
};
}
}
User.ts
///<reference path="Company.ts"/>
module User {
export class Person {
public first:string;
public last:string;
private myJob:Company.Job;
private myAccount:User.Account;
constructor(firstName:string, lastName:string){
this.first = firstName;
this.last = lastName;
}
public getName():string{
return this.first + ' ' + this.last;
}
public setJob(job:Company.Job){
this.myJob = job;
}
public setAccount(acct:User.Account){
this.myAccount = acct;
}
public toString():string{
return "User: " + this.getName()
+ "\nUsername: " + this.myAccount.userName
+ "\nJob: " + this.myJob.title;
}
}
export class Account {
public userName:string;
private _password:string;
constructor(user:Person){
this.userName = user.first[0] + user.last;
this._password = '12345';
}
}
}
app.ts
///<reference path="src/User.ts"/>
///<reference path="src/Company.ts"/>
(function go(){
var user1:User.Person = new User.Person('Bill','Braxton');
var acct1:User.Account = new User.Account(user1);
var job1:Company.Job = new Company.Job('Greeter','Greet');
user1.setAccount(acct1);
user1.setJob(job1);
console.log(user1.toString());
}());
的index.html
<!DOCTYPE html>
<html>
<head>
<title>TypeScript Test</title>
<script src="app.js"/>
<script>
go();
</script>
</head>
<body>
</body>
</html>
编译器命令
tsc --sourcemap --target ES5 --module commonjs file.ts
当我在Chrome中打开index.html并打开Sources面板Chrome Dev Tools时,它会显示app.js和app.ts,但不显示其他.ts模块。所以app.ts的源地图正在运行,但是如何加载其他模块以便可以在Chrome中调试它们?
答案 0 :(得分:6)
当您使用引用注释时,您必须自己加载所有模块(即添加多个脚本标记,或者组合和缩小文件等)。
如果要使用模块加载器,则需要使用import
语句,这些语句将转换为您选择的模块加载器的require方法调用(可能是Web上的RequireJS)。
示例1 - DIY
<script src="/src/Company.js"></script>
<script src="/src/User.js"></script>
<script src="app.js"></script>
示例2 - RequireJS
的src / Company.ts
export class Job {
public title: string;
public description: string;
constructor(title: string, desc: string) {
this.title = title;
this.description = desc;
}
}
请注意,我已删除了module
声明。使用RequireJS ...
的src / User.ts
import company = module('Company');
export class Account {
public userName: string;
private _password: string;
constructor(user: Person) {
this.userName = user.first[0] + user.last;
this._password = '12345';
}
}
export class Person {
public first: string;
public last: string;
private myJob: company.Job;
private myAccount: Account;
constructor(firstName: string, lastName: string) {
this.first = firstName;
this.last = lastName;
}
public getName(): string {
return this.first + ' ' + this.last;
}
public setJob(job: company.Job) {
this.myJob = job;
}
public setAccount(acct: Account) {
this.myAccount = acct;
}
public toString(): string {
return "User: " + this.getName()
+ "\nUsername: " //+ this.myAccount.userName
+ "\nJob: " + this.myJob.title;
}
}
这里有一些更改 - 我们有import
语句而不是指向该文件的注释。我们还在此处引用Account
而不是User.Account
。同样,封闭模块已经消失,因为文件是模块。
app.ts
import Company = module('src/Company');
import User = module('src/User');
(function go() {
var user1: User.Person = new User.Person('Bill', 'Braxton');
var acct1: User.Account = new User.Account(user1);
var job1: Company.Job = new Company.Job('Greeter', 'Greet');
user1.setAccount(acct1);
user1.setJob(job1);
console.log(user1.toString());
} ());
此处再次导入语句。作为旁注,go
函数看起来是立即执行的,因此您不需要手动再次调用它 - 您可以删除函数名称以防止意外完成。
的index.html
<script data-main="app.js" src="require.js"></script>
您的项目需要include the RequireJS script。您只需将它指向您的第一个文件,它将加载所有其余文件。您将在已编译的JavaScript中注意到,您的import
语句将转换为对RequireJS require
函数的调用:
var Company = require("./src/Company");
var User = require("./src/User");
这会触发RequireJS为您加载脚本。
您还可以use RequireJS manually if you want more control(即直接使用require
方法,而不是使用import
语句。