0
我有這個捲曲URL連接到couchDB。上ajax而不是捲曲
捲曲-X PUT http://admin:[email protected]:5984/test/ 「001」 -d '{ 「名」: 「莫伊塞斯」}'
我看到了很多與GET和POST問題,但我沒有找到與PUT的例子。
我這樣做是正確的嗎?
$.ajax({
crossOrigin: true,
url : 'http://admin:[email protected]:5984/test/'+user,
type : 'POST',
processData: false,
dataType: 'json',
contentType: 'application/json',
data: {pass:pass,email:email},
success:function(result){
if(result!="error"){
alert("Registro Correcto, Proceda a entrar");
open("login.html","_parent");
}else{
alert("Usuario Ya Utilizado");
}
},