0

我有一个使用 XML 数据创建表的页面。在下面的代码中,我编写了一个从 SQL 创建 XML 数据的 WebMethod。但是,我的页面没有调用这个 WebMethod,也没有创建这个表。这有意义吗?

$(document).ready(function () {
        source =
        {
            datatype: "xml",
            datafields: [
                { name: 'User', type: 'string' },
                { name: 'RequestDate', type: 'DateTime' },
                { name: 'SituationDesc', type: 'string' }
            ],
            async: false,
            record: 'Table',
            url: 'Tickets.aspx/GetTickets',
        };
        var dataAdapter = new $.jqx.dataAdapter(source, {
        contentType: 'application/json; charset=utf-8'}
        });
        $("#jqxgrid").jqxGrid(
        {
            width: 670,
            source: dataAdapter,
            theme: 'classic',
            columns: [
              { text: 'Product Name', datafield: 'User', width: 250 },
              { text: 'Date', datafield: 'RequestDate', cellsalign: 'right', cellsrenderer: cellsrenderer, width: 100 },
              { text: 'Situation', datafield: 'SituationDesc', cellsalign: 'right', cellsrenderer: cellsrenderer, width: 100 },
            ]
        });
    });

<body class='default'>
<div id='jqxWidget' style="font-size: 13px; font-family: Verdana; float: left;">
    <div id="jqxgrid">
    </div>
</div>

[WebMethod]
[ScriptMethod(UseHttpGet = true, ResponseFormat = ResponseFormat.Xml)]
public string GetTickets()
{
    string query = "SELECT [User],RequestDate,SituationDesc, FROM Ex";
    SqlCommand cmd = new SqlCommand(query);
    DataSet data = GetData(cmd);
    System.IO.StringWriter w = new System.IO.StringWriter();
    data.Tables[0].WriteXml(w, XmlWriteMode.WriteSchema, false);
    return w.ToString();
}

private DataSet GetData(SqlCommand cmd)
{

    string strConnString = ConfigurationManager.ConnectionStrings["XX"].ConnectionString;
    using (SqlConnection con = new SqlConnection(strConnString))
    {
        using (SqlDataAdapter sda = new SqlDataAdapter())
        {
            cmd.Connection = con;
            sda.SelectCommand = cmd;
            using (DataSet ds = new DataSet())
            {
                sda.Fill(ds);
                return ds;
            }
        }
    }
}
4

1 回答 1

1

您实际上还没有声明一个静态方法供您的 Ajax 调用。

我还没有看完你所有的代码,虽然这部分肯定是不正确的..

[WebMethod]
[ScriptMethod(UseHttpGet = true, ResponseFormat = ResponseFormat.Xml)]
public string GetTickets()
{

应该注意“静态”声明

    [WebMethod]
    [ScriptMethod(UseHttpGet = true, ResponseFormat = ResponseFormat.Xml)]
    public static string GetTickets()
    {

另外 - 尝试安装 Firebug(或类似的) - 您将能够在尝试调用该方法时从浏览器中查看存在哪些错误。这将帮助您进一步识别任何额外的可能错误。

您还需要在进行上述更改后声明,否则将无法访问private DataSet GetData(SqlCommand cmd)static

于 2013-07-03T15:19:00.257 回答