我正在尝试通过jQuery上的ajax从servlet获得响应,但是我收到了'错误'消息。虽然'doGet'部分有效,但'doPost'部分却没有。代码中的错误部分在哪里?
我很感激你能告诉我的一切。谢谢。
这是ajax代码:
#!/bin/bash
...
[ -r ".properties" ] && . ".properties" || {
printf "error: source of file '.properties' failed, exiting"
exit 1
}
这是servlet代码:
$.ajax({
type:'POST',
url:'http://localhost:8080/Ajax/Test',
dataType:'text',
success:function(text){
alert(text);
},
error:function(XMLHttpRequest, textStatus, errorThrown){
alert('error');
}
});