简单的ajax调用获得异常

时间:2014-03-06 16:06:49

标签: jquery asp.net ajax vb.net

我正在进行这个ajax调用:

<script src="js/jquery-1.11.0.js"></script>
  <script type="text/javascript">
        $(document).ready(function () {
            // Add the page method call as an onclick handler for the div.
            $("#Result").click(function () {

                $.ajax({
                    type: "POST",
                    url: "Default.aspx/GetDate",
                    data: "{}",
                    contentType: "application/json; charset=utf-8",
                    dataType: "json",
                    success: function (msg) {
                        // Replace the div's content with the page method's return.
                        $("#Result").html(msg.d);
                    }
                });
            });
        });
</script>

HTML:

<div id="Result">Click here for the time.</div>

WEBMETHOD:

<WebMethod()> _
<ScriptMethod(ResponseFormat:=ResponseFormat.Json)>
    Public Shared Function GetDate() As String
        Return DateTime.Now.ToString()
    End Function

当我运行此操作时,我在控制台中收到错误:

Failed to load resource: the server responded with a status of 500 (Internal Server Error)

任何人都可以说我出错的地方和地点?如果我下载提供的样本并且工作正常,这可以在恩科西亚的example中提到。

2 个答案:

答案 0 :(得分:0)

不是专家,但我在一些作品中遇到过这种情况。 这是给你测试的:

$(document).on("click", "#Result", function(){
    var data = {};
    $.post("Default.aspx/GetDate", data, function(msg,status){
        $(this).html(msg.d);
        console.log(msg);
    })
})

答案 1 :(得分:0)

不知道发生了什么,但这通过添加:

解决了我的问题
<script src="http://code.jquery.com/jquery-migrate-1.2.1.min.js"></script>