如何修复 typeScript 中的“对象”类型上不存在“属性”拨号
Posted
技术标签:
【中文标题】如何修复 typeScript 中的“对象”类型上不存在“属性”拨号【英文标题】:how to fix 'Property 'dials' does not exist on type 'Object' in typeScript 【发布时间】:2020-02-24 11:45:31 【问题描述】:import Component, OnInit from '@angular/core';
import DashboardService from 'src/app/provider/dashboard.service';
@Component(
selector: 'app-dashboard',
templateUrl: './dashboard.component.html',
styleUrls: ['./dashboard.component.css']
)
export class DashboardComponent implements OnInit
revenueTargetProgress: Object;
dials: object;
Guage = this.TotalRevenue;
constructor(private api: DashboardService)
this.revenueTargetProgress =
chart:
caption: "Revenue Target Progress",
lowerLimit: "0",
upperLimit: "100000000",
showValue: "1",
numberPrefix: "₹ ",
theme: "fusion",
showToolTip: "0"
,
// Chart Data
colorRange:
color: [
minValue: "0",
maxValue: "30000000",
code: "#F2726F"
,
minValue: "30000000",
maxValue: "80000000",
code: "#FFC533"
,
minValue: "80000000",
maxValue: "1000000000",
code: "#62B58F"
]
,
dials:
dial: [
value: "4800000"
]
;
ngOnInit()
debugger;
this.api.getAllRevenueTarget().subscribe(res =>
this.TopCustomers = res;
this.customerBarChart.data = this.TopCustomers;
this.TotalRevenue = this.TopCustomers.map(x => x.value).reduce((a, value) => a + value, 0);
let dials: any;
var Value = this.revenueTargetProgress.dials.dial[0].value = this.TotalRevenue;
//Value.dial[0].value = this.TotalRevenue;
);
在收到此错误的“对象”类型上不存在属性“拨号”,我是 Angular 7 打字稿的新手。我想清除这个错误就是这样。我尝试通过声明拨号:任何;表盘:数组;拨号:任何[] = [];拨号:any=[];
【问题讨论】:
【参考方案1】:问题在于revenueTargetProgress
属性的类型。
Object
是Object
javascript 原型的类型。除了前面有extends
之外,它本身并没有多大意义。您可以在this thread 或this thread 中详细了解any
、Object
、object
和 之间的区别。
如果您知道revenueTargetProgress
的类型,您可以指定它来代替Object
。如果您不知道并且您喜欢一定程度的风险,您可以分配any
。
【讨论】:
实际上 'revenueTargetProgress' 是 Json 我从 'fusionCharts' 得到它我无法对其进行更改 您不必对其进行更改。你必须给它分配一个类型以上是关于如何修复 typeScript 中的“对象”类型上不存在“属性”拨号的主要内容,如果未能解决你的问题,请参考以下文章
如何修复'Typescript“正在进行类型检查......”花费太长时间'?
如何修复 Typescript 编译错误 ts2345“类型 'Response' 丢失......来自'Response'类型:重定向、预告片、formData!”
如何修复 Typescript 错误“对象可能是‘未定义’”