我是服务器端编程的新手,我有一个form
需要的操作是,当用户填写姓名、地址和密码时,提交从然后页面应该加载(如本地从提交)并且应该显示新数据(数据是在 JSON 文件中可用)。
我在服务器上有 JSON 文件。是否可以在不使用数据库的情况下以 JSON 格式从服务器获取响应?
HTML:---
<form action="https://domain.com/jsonfilelocation/json.json">
<input type="text" name="name" />
<input type="text" name="address" />
<input type="text" name="pincode" />
<input type="submit" name="submit" />
</form>
JSON:--- json.json 位于https://domain.com/jsonfilelocation/json.json
{
"name": "kk",
"address": "XYZ, New Delhi",
"pincode": "1000001"
}