我使用 node.js 7.44。
在文件 user.models.ts 我有 multilplie 类,如:
import { Exclude, Expose } from "class-transformer";
export class User {
@Expose() _id: string;
@Expose() fname: string;
@Expose() lname: string;
@Expose() birthday: Date;
@Expose() address: Address;
constructor(){...}
}
@Exclude()
export class Address {
@Expose() street: string;
@Expose() num: number;
@Expose() city: string;
@Expose() zipCode: number;
}
当我编译服务器时,我得到了错误ReferenceError: Adress is not defined
如何在同一个文件中使用 multilplie 类?