我正在尝试执行ajax POST,但始终返回500服务器错误。
为进行测试,我简化了请求。
JavaScript代码:
$(document).ready(function() {
// Add the page method call as an onclick handler for the div.
$("#prova").click(function() {
$.ajax({
type: "POST",
url: "Solicitud.aspx/GetDate",
data: {someParameter: "some value"},
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(msg) {
// Replace the div's content with the page method's return.
console.log("Resposta"+ msg.d);
}
});
});
});
班级代码
namespace picovirgiliop
{
public partial class Solicitud : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
[WebMethod]
public static string GetDate(string someParameter)
{
return DateTime.Now.ToString();
}
...
编辑
POST http://localhost:63010/Solicitud.aspx/GetDate 500(内部服务器错误)
答案 0 :(得分:1)
根据您的代码检查,我可以在行上看到问题
数据:{someParameter:“某些值”},
应该是下面的样子,
data: "{ 'someParameter': 'some value' }",
OR
data: "{ someParameter: 'some value' }",
答案 1 :(得分:0)
您需要对要传递到服务器的数据进行分类。将此代码data: {someParameter: "some value"}
替换为下面的代码行:
data: JSON.stringify({"someParameter": "some value"}),