当前位置:  开发笔记 > 前端 > 正文

TypeScript错误TS2339,但属性确实存在

如何解决《TypeScript错误TS2339,但属性确实存在》经验,为你挑选了1个好方法。



1> Alastair..:

我从一个关于gitter的贡献者那里找到了答案.一个演员any然后一个演员TokenResult来做伎俩,如下......

return this.http.fetch('/Account/getToken')
    .then(response => response.json())
    .then((data: any) =>
    {
        console.log('ApiToken.refreshToken returned data: ' + data);

        token.accessToken = (data).accessToken;
        token.expiryDate = (data).expiryDate;

        return token;
    })
    .then((t) => { return this.saveToken(t) });

推荐阅读
家具销售_903
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有