11

我无法从我的 JQuery 调用中进入我的 Search WebMethod。也许有人可以帮助我指出正确的方向。

我还将所有内容打包成一个 zip 文件,以防有人想仔细查看。

http://www.filedropper.com/jsonexample

谢谢瑞恩

    <%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>JSON Example</title>
    <script type="text/javascript" language="JavaScript" src="jquery-1.3.1.min.js"></script>

<script type="text/javascript" language="javascript">

function Search() {
    var search = $("#searchbox").val();
    var options = {
        type: "POST",
        url: "Default.aspx/Search",
        data: "{text:" + search + "}",
        contentType: "application/json; charset=utf-8",
        dataType: "json",
        success: function(msg) {
            alert('Success!');
        }
    };
    $.ajax(options);
}
</script>

</head>
<body>
    <form id="form1" runat="server">
        <input type="text" id="searchbox" size="40" />
        <a href="#" onclick="Search()" id="goSearch">Search</a>
        <br />        
        <div id="Load" />
    </form>
</body>
</html>

这是 default.aspx 背后的代码

 Imports System.Data
    Imports System.Web.Services
    Imports System.Web.Script.Serialization

    Partial Class _Default
        Inherits System.Web.UI.Page

        <WebMethod()> _
        Public Shared Function Search(ByVal text As String) As IEnumerable
            Return "test"
        End Function

    End Class
4

2 回答 2

15

要解决这样的问题,首先要做的是在 Firebug 中观看。

如果您单击“搜索”链接并在 Firebug 的控制台中观看 POST 请求/响应,您会看到它抛出 500 服务器错误:无效的 JSON 基元。

原因是因为您的“数据”JSON 文字中的键/值标识符没有被引用。第 17 行应该是:

data: "{'text':'" + search + "'}",

然后,一切都会按预期工作。

注意: 建议的数据 { test: search } 将不起作用。如果您为 jQuery 提供实际的 JSON 文字而不是字符串,它会将其转换为 test=search 和 POST 的键/值对而不是 JSON。这也将导致 ASP.NET AJAX ScriptService 或 PageMethod 引发 Invalid JSON Primitive 错误。

于 2009-02-18T23:02:30.357 回答
6

您需要执行以下操作(C#):

  • WebMethod 必须是public static
  • 它必须用[WebMethod]属性装饰
  • 您的 .aspx 页面上需要一个 ScriptManager
  • 设置 ScriptManager 的EnablePageMethods="true"

这是一些示例 javascript:

$().ready(function() {
    $(yourDropDownList).change(LoadValues);
});


function LoadValues() {
    PageMethods.YourMethod(arg1, CallSuccess, CallFailed);
}

function CallFailed(result) {
    alert('AJAX Error:' + result.get_message());
}

function CallSuccess(result) {
    //do whatever you need with the result
}
于 2009-02-18T22:38:31.053 回答