0

私は次のように見えるものを持っています

aInt[0] = {pk:'1', other:'this', otherother:'that'};
aInt[1] = {pk:'1', other:'this2', otherother:'that2'};
aInt[2] = {pk:'2', other:'thisA', otherother:'thatA'};
aInt[3] = {pk:'3', other:'thisB', otherother:'thatB'};

そして私はそれをに変えたい

aNew[0] = [1 [{other:'this', otherother:'that'},
              {other:'this2', otherother:'that2'}];
aNew[1] = [2 [{other:'thisA', otherother:'thatA'}];
aNew[2] = [3 [{other:'thisB', otherother:'thatB'}];

またはその趣旨の何か。結果の構文が間違っている可能性がありますが、私の意図が明確であることを願っています。構文は自由に編集してください。私が持っているオブジェクトの配列の pk フィールドの値に基づいて、結果セットを関連付けたいと思います。as3で

前もって感謝します。

4

1 に答える 1