オブジェクトからカンマ区切りの文字列を作成しようとしていますが、
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
設定。