我希望在提交和验证表单后将表单数据放入JSON文件中。我得到的对象,但我可以把它。这是我的代码。
_id: 1,
sender: "michael",
receiver: "jennifer",
status_pending: 1
_id: 2,
sender: "michael",
receiver: "bobby",
status_pending: 2,
答案 0 :(得分:0)
我的方法是使用
将数据转换为json const body = JSON.stringify(data);
在将其添加到请求内容之前