CRUD Operation in JSONStore using MobileFirst Platform 7.1
问题 I'm new to MFP and I'm trying to perform a basic CRUD operation. Nothing is happening after the following code is executed. I will highly appreciate if i can get some help. Thank you. main.js function wlCommonInit () { var collections = { people : { searchFields: {name: 'string', age: 'integer'} } }; WL.JSONStore.init(collections).then(function (collections) { // handle success - collection.people (people's collection) }).fail(function (error) { alert("alert" + error); // handle failure });