我正在尝试从对象形成逗号分隔的字符串,
const data = {"Ticket-1.pdf":"8e6e8255-a6e9-4626-9606-4cd255055f71.pdf","Ticket-2.pdf":"106c3613-d976-4331-ab0c-d581576e7ca1.pdf"};
const values = Object.values(data).map(x => x.substr(0, x.length - 4));
const commaJoinedValues = values.join(',');
console.log(commaJoinedValues);
如何使用TypeScript做到这一点?
获取错误文件:
severity: 'Error'
message: 'Property 'values' does not exist on type 'ObjectConstructor'.'
at: '216,27'
source: 'ts'
Object.values
在TS中使用ES7 来解决OP的编译错误的实际答案。为此,您只需要ES2017
在您的--lib
环境中即可。