我需要从我的应用程序 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 方法。
请帮忙!!!
提前致谢