如何在axios(react.js)中更新json文件

时间:2019-03-13 08:30:42

标签: reactjs axios file-writing

我目前正在为我的React应用程序模拟数据。因此,axios用于模拟数据,而这些模拟数据存储在json文件中。我的json文件如下。

{
 "invoices": [{
 "storageId": 45678,
 "identifier": "1215",
 "invoiceDate": "2119-05-10",
 "invoiceNo": "11",
 "issuer": "Oliver",
 "totalAmount": 321533,
 "status": "Rejected",
 "dueDate": "1019-01-15",
 "netAmount": 1000,
 "vatAmount": 10,
 "downloadLink":"http://www.africau.edu/images/default/sample.pdf"
 }]
}

一旦我更改了发票的状态,就需要在json文件中对其进行更新。所以我需要一种用新数据更新或覆盖现有json文件的方法。我找到了fs解决方案,但它对我不起作用。

0 个答案:

没有答案