我想要使用PUT请求。我以前从未使用过。我只使用get和POST请求。现在我想在服务器上保存文件。换句话说,我有数据,我有我要保存/创建的位置文件与data.can我们使用Ajax ..我们可以在服务器上创建文件.. 我正在取得成功,但我不知道文件是否会创建。 如果我有 json数据{data:" test"} 的 SAVEFILEPATH:" d:/download/c.text"
function postloadScript(json,saveFilePath){
var data={path:saveFilePath,jsonData:JSON.parse(json)};
$.ajax({
type:"PUT",
url: 'http://192.167.1.92:8080/aa/authenticate/putrequest?savepar='+saveFilePath,
contentType: 'application/json',
// headers: { path: saveFilePath },
crossDomain: true,
dataType: "json",
// data: JSON.stringify(data),
data: json,
success:function(data){
console.log(data);
console.log(JSON.stringify(data));
},
error:function(err){
console.log(err)
console.log(err.error())
alert('error'+err);
}
});
}
我的要求就是这个
我用? savepar='+saveFilePath,
发送保存文件路径..
但为什么不在服务器上创建文件?