ASP页面中的Ajax返回500

时间:2018-09-06 07:36:55

标签: c# jquery asp.net ajax

我正在尝试执行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(内部服务器错误)

  • 发送@ jquery-3.3.1.js:9600
  • ajax @ jquery-3.3.1.js:9206
  • (匿名)@ Solicitud:300
  • 发送@ jquery-3.3.1.js:5183
  • elemData.handle @ jquery-3.3.1.js:4991

2 个答案:

答案 0 :(得分:1)

根据您的代码检查,我可以在行上看到问题

  

数据:{someParameter:“某些值”},

应该是下面的样子,

data: "{ 'someParameter': 'some value' }",

OR

data: "{ someParameter: 'some value' }",

答案 1 :(得分:0)

您需要对要传递到服务器的数据进行分类。将此代码data: {someParameter: "some value"}替换为下面的代码行:

 data: JSON.stringify({"someParameter": "some value"}),