角度误差TS7008:会员’摘要’隐含地具有’任何’类型

前端之家收集整理的这篇文章主要介绍了角度误差TS7008:会员’摘要’隐含地具有’任何’类型前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
更新到角度2 RC后,我得到以下错误
error TS7008: Member 'summary' implicitly has an 'any' type.

在这行:

@Input() summary;

怎么了?

编辑:好的,好像我在任何一个我的公共变量上都收到这个错误.

也许您更改了TypeScript编译器配置中noImplicitAny属性的值…请参阅tsconfig.json文件
{
  "compilerOptions": {
    "target": "es5","module": "commonjs","moduleResolution": "node","sourceMap": true,"emitDecoratorMetadata": true,"experimentalDecorators": true,"removeComments": false,"noImplicitAny": false // <-----
  },"exclude": [
    "node_modules","typings/main","typings/main.d.ts"
  ]
}

您可以尝试在属性添加一个类型.就像是:

@Input() summary:string;
原文链接:https://www.f2er.com/angularjs/142710.html

猜你在找的Angularjs相关文章