我有一个简单的课堂:

export class TestObj
{
  public name:string;
  public id:number;
  public example:string;

}

简单的服务:
@Injectable()
export class SimpleService
{
    private testObj:TestObj = new TestObj();

    public constructor(@Inject(Http) private http:Http){}

public getTestObj():void
{

this.http.get("/rest/test2").map(res =>  res.json())
      .do(data => console.log(<TestObj> data))
      .catch(resp => Observable.throw(resp.json().error))

      .subscribe(tobj => {
      this.tobj = tobj;
      console.log(this.tobj);
      }, error => {log.error(error)})

}

如果我将在getTestobj()之前在控制台日志simpleservice.testobj中打印,我看到
<TestObj>

,但是如果我运行gettest,log将
<Object>
<Object>

是角虫吗?还是打字错误?

最佳答案

代码的问题是,http请求返回的对象是一个没有附加任何类型信息的纯json对象。将其强制转换为<TestObj>只允许编译时检查顺利运行,但不会更改仍然是对象的对象的实际类型。
因此,如果您想在内存中拥有testobj的实际实例,就必须从接收到的json对象手动构造它。不幸的是,naitive javascript json反序列化不提供这种可能性。以下是有关此主题的更多信息:link

10-06 04:02