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