0

我正在关注 ASP.NET MVC 和 JSONP 博客文章的示例代码/教程:http: //blogorama.nerdworks.in/entry-EnablingJSONPcallsonASPNETMVC.aspx

我已经获取了代码示例并对其进行了修改以供我自己使用。

当我点击页面时,它会触发我的控制器的动作,但$.getJSON(call, function (rsp)..根本没有触发。

控制器动作

[JsonpFilter]
public JsonpResult GetMyObjects(int id)
{
    List<MyObject> list = MyDAO.GetMyObjects(id);

    return new JsonpResult
        {
            Data = list,
            JsonRequestBehavior = JsonRequestBehavior.AllowGet
        };
}

网页

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title></title>
    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>

</head>
    <body>
        <script type="text/javascript">

            var url = "http://localhost/MySite.ContentDelivery/MyController/GetMyObjects/?";


            function getObjects() {
                //
                // build the URL
                //
                debugger;
                var call = url + "id=48&jsoncallback=?";

                //
                // make the ajax call
                //
                $.getJSON(call, function (rsp) {
                    debugger;
                    alert(rsp);
                    if (rsp.stat != "ok") {
                        //
                        // something went wrong!
                        //
                        $("#myDiv").append(
                            "<label style=\"background-color:red;color:white;padding: 25px;\">Whoops!  It didn't work!" +
                            "  This is embarrassing!  Here's what the system had to " +
                            " say about this - " + rsp.message + "</label>");
                    }
                    else {
                        //
                        // build the html
                        //
                        var html = "";
                        $.each(rsp.list.myObject, function () {
                            var obj = this;
                            html += "<span" + obj.Name + "</span> <br />";
                        });

                        //
                        // append this to the div
                        //
                        $("#myDiv").append(html);
                    }
                });
            }

            //
            // get the offers
            //
            $(document).ready(function() {
                alert('go..');
                $(getOobjects);
            });
    </script>
        <div id="myDiv"></div>
    </body>
</html>

tl;博士为什么在我触发并执行 MVC 控制器操作时我getJson()没有触发。getObjects()

4

1 回答 1

1

代替:

var call = url + "id=48&jsoncallback=?";

和:

var call = url + "id=48&callback=?";

JsonpResult您使用的自定义依赖于一个名为callback而不是的查询字符串参数jsoncallback

Callback = context.HttpContext.Request.QueryString["callback"];

此外,您还使用[JsonpFilter]属性装饰了控制器操作并返回了JsonpResult. 如文章中所述,您必须阅读过您应该选择一个:

[JsonpFilter]
public ActionResult GetMyObjects(int id)
{
    List<MyObject> list = MyDAO.GetMyObjects(id);

    return Json(list, JsonRequestBehavior.AllowGet);
}

或其他:

public ActionResult GetMyObjects(int id)
{
    List<MyObject> list = MyDAO.GetMyObjects(id);

    return new JsonpResult
    {
        Data = list,
        JsonRequestBehavior = JsonRequestBehavior.AllowGet
    };
}

但不要将两者混为一谈。

于 2013-02-24T16:29:58.813 回答