How to write/update a JSON file [UI5]

Viewed 34

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 ?

0 Answers
Related