在Visual Studio 2015中,如果我使用:
编写.ts文件class MyClass {
public pageSize: number;
}
没有标记错误(带下划线)。 如果我写了
class MyClass1 {
public readonly pageSize: number;
}
我得到奇怪的下划线,但代码编译。 任何线索?
谢谢
答案 0 :(得分:1)
readonly属性只有introduced in typescript 2,所以如果你想使用它,那么你必须使用typescript 2进行编译。
您的代码编译in the playground没有错误,因为它使用的是typescript 2。
Here's how与visual studio一起使用。