-3
オブジェクトがデータでいっぱいです。JSONオブジェクトを編集したい
このデータを追加、削除、上へ移動、下へ移動して編集します。私はこれを行う方法を発見した
this.questions =
{
"testQS":[
{
"quote": "Quote 888",
"type": "something",
}, {
"quote": "Quote 999",
"type": "something2,
}
...
:ここ
は私のオブジェクトの一例です。 - その技術的にあなただけの持っているconst temp = this.questions.testQS[index];
this.questions.testQS[index] = this.questions.testQS[index-1];
this.questions.testQS[index-1] = temp;
このオブジェクトをTypescriptで編集したい –
JavaScriptオブジェクト(あなたが持っているもの)とその文字列表現をJavaScript Object Notation(あなたが持っていないJSON)には違いがあります。 – crashmstr