所以这里我面临的问题。我可以使用$ http service of angular从JSON文件中获取数据,但我无法在同一文件中更新数据。
从JSON文件中读取数据的示例代码。
$http.get('/meenuPro/shared/product.json').
success(function(data, status, headers, config) { // alert("done");
return data;
}).
error(function(data, status, headers, config) { // alert("error occured");
});