北京附近做网站的公司有哪些,宿州百度seo排名软件,网站地址搜索,做地铁系统集成的公司网站我有一个带有一些输入字段的基本表单.我想在提交表单时将表单数据保存到json文件中.json文件中保存数据的格式应如下所示.[{title:some text,description:some text,info:some text,usernametitle:some text,description:some text,info:some text,username:some name},{title:some text,description:some text,info:some text,username:some name},{title:some text,description:some text,info:some text,username:some name}]我尝试使用此代码执行此操作,但我的’story.json文件’中没有保存数据$(form).submit(function() {$.ajax({type: POST,dataType: json,url: story.json,data: $(this).serialize(),success: function(data) {alert(data.message);},failure: function (data) {alert(Please try again);}});});我想将此表单数据保存在我的本地文件中.请帮我找到正确的方法.谢谢