SAPUI5 provides you a way to load data from a JSON-file:
var oProductModel = new JSONModel();
oProductModel.loadData("./model/Products.json");
sap.ui.getCore().setModel(oProductModel, "products");
Question: Is there an analog method to .update the JSON-file ?