从对象获取值时遇到问题。我需要得到一个值,即您的密钥是其他对象的值。
但是在Typescript中显示此错误。
是否可以在不修改对象类型的情况下获取值?
public data: string | {};
答案 0 :(得分:0)
使用df=pd.read_csv('file_temp.tmp', delimiter='\t')
(do further analysis)
-它会返回typeof
或string
。如果返回对象,则可以使用键语法,否则该值将是您可以直接使用的变量。
object
答案 1 :(得分:0)
已解决任何问题。
const data:any = this.row.data;
...
mounted() {
this.row.columns.forEach(element => {
if (element.show === this.headerMobile) {
this.titleLabel = element.label;
const data: any = this.row.data;
this.titleLabelValue = data[element.show];
}
});
}
...
Thx @JGFMK