在MVC4中自动完成

时间:2016-02-15 06:32:34

标签: javascript c#

在我的项目中使AutoComplete工作时出现问题。我正在使用MVC4。我使用Json部分正确地遵循了一切。我不确定问题是在jQuery上还是在我的控制器上。 以下是代码

public ActionResult Index()
    {
        EmployeeContext db = new EmployeeContext();
        return View(db.Employees);
    }
    [HttpPost]
    public ActionResult Index(string Search_Data)
    {
        EmployeeContext db = new EmployeeContext();
        List<Employee> employees;
        if (string.IsNullOrEmpty(Search_Data))
        {
            employees = db.Employees.ToList();
        }
        else
        {
            employees = db.Employees
                .Where(s => s.EmpName.StartsWith(Search_Data)).ToList();
        }
        return View(employees);
    }
    public JsonResult GetEmployees(string term)
    {
        EmployeeContext db = new EmployeeContext();
        List<string> employees = db.Employees.Where(s => s.EmpName.StartsWith(term))
            .Select(x => x.EmpName).ToList();
        return Json(employees, JsonRequestBehavior.AllowGet);
    }

我的index.cshtml中使用了以下脚本

    <link href="~/Content/jquery-ui-1.10.4.custom.min.css" rel="stylesheet" type="text/css"/>
<script src="~/Scripts/jquery-1.10.2.js" type="text/javascript"></script>
<script src="~/Scripts/jquery-ui-1.10.4.custom.min.js" type="text/javascript"></script>
<script type="text/javascript">
    $(function () {
        $("#txtSearch").autocomplete({
            source: '@Url.Action("GetEmployees","Employee")',
            minLength: 1
        });
    });
</script>

问题是GetEmployees方法没有得到命中,我能够通过输入字符串来搜索数据,但自动完成功能不起作用。

2 个答案:

答案 0 :(得分:0)

看起来你错过了一个重要的脚本文件:

Unobtrusive Ajax

我多次为这个问题堕落。 jQuery自动完成使用jQuery ajax函数,如果你包含Unobtrusive Ajax脚本,这只适用于MVC。

答案 1 :(得分:0)

我解决了错误并将脚本放在另一个区域,所以

@Scripts.Render("~/bundles/jquery")
@Scripts.Render("~/bundles/angular")
<script src="~/Scripts/MyApp.js"></script>
<script src="~/Scripts/jquery-ui-1.10.4.custom.min.js" type="text/javascript"></script>   
@RenderSection("scripts", required: false)