私は次のコードを選択した値から文字列を作成しようとしています。私は{category:Music}
として出力を期待していながらなぜ値がtypescriptに割り当てられていないのですか?
this.selectedCategory = selectedvalue.name;
this.filter = '{category:${this.selectedCategory}}';
this.filter
の値は{category:${this.selectedCategory}}
です。
その文字列補間として処理しました。テンプレート固有の引用符を使用します。 – Nirus