在第一个TS文件中分配给类属性的值未传输到其他TS文件
first.ts
export class first{
public name:any;
function getName{
console.log("Name is: "+this.name);
}
}
Second.ts
import {first} from ./first
let fs = new first;
fs.name = “Mohit”;
fs.getName();
我希望name属性将值保留给其他TS文件。 但是,在控制台中,我收到“名称为:未定义”