0
我需要替換IBM Worklight的JSONStore中的多個值。 這樣只保存第一個值。爲什麼?如何保存多個值JSONStore
.then(function() {
for (var index = 0; index < elencoSpese.length; index++) {
var spesa = elencoSpese[index];
var spesaReplace = {_id: spesa.id, json: spesa};
spesa.id_nota_spesa = idNotaSpesa;
spesa.checked = true;
WL.JSONStore.get(COLLECTION_NAME_SPESE).replace(spesaReplace);
}
})
謝謝!這樣所有的作品。 – Marco 2014-09-02 15:02:26