0

我需要从我的应用程序 MVC 3 中的插件 jquery.tagHandler 的 ajax 请求中获取数据,这是官方页面http://ioncache.github.com/Tag-Handler/,这是我的应用程序代码:

    $("#tags").tagHandler({
        getData: { texto: 'test 123' },
        getUrl: '@(Url.Action("GetTags"))',
        autocomplete: true,
        maxTags: 5,
        initLoad : true
    });

    [HttpGet]
    public JsonResult GetTags(string texto)
    {
        var result = _ServiceTags.Search(texto);

        return Json(result);
    }

在安排我的应用程序时,这不会调用 GetTags 方法。

请帮忙!!!

提前致谢

4

1 回答 1

0

MVC3 具有 JsonResults 的安全功能。您需要将您的退货修改为如下所示:

return Json(result, JsonRequestBehavior.AllowGet);
于 2013-05-23T13:00:01.633 回答