最佳答案
我刚接触打字机,不知道这个问题怎么用词。
我需要访问构造函数中传递的对象的两个“可能”属性。我知道我错过了一些检查,看看他们是否定义,但类型是抛给我一个“属性不存在于‘对象’”消息。消息出现在 选择器上,模板返回。
class View {
public options:Object = {};
constructor(options:Object) {
this.options = options;
}
selector ():string {
return this.options.selector;
}
template ():string {
return this.options.template;
}
render ():void {
}
}
我相信它相当简单,但是对我来说 Typecript 是新的。