module Layout {
var a = localStorage.getItem('x');
export class aaa {
init() {;
var xxx = localStorage.getItem('x');
}
}
}
在具有 0.8.1 版本的 Visual Studio 2012 中,我在 init() 函数内的行上收到一条消息,说“名称 localStorage 在当前范围内不存在”。在 aaa 类之外,这可以正常工作。我能做些什么来解决这个问题吗?