我在 NamesModel 中有一个方法,它获取所有名称并返回名称列表:
public static List<NamesModel> GetAllNames()
{
List<NamesModel> names = new List<NamesModel>();
//
// code to fetch records
//
return names;
}
在我的控制器中:
public ActionResult Index()
{
NamesModel model = new NamesModel();
model.GetAllNames();
return View(model);
}
在视图中,我有一个文本框:
@Html.TextBox("search-name")
现在在我的 javascript 中,我想从模型(从方法)或控制器中获取所有名称到变量中,例如:
<script type="text/javascript">
$(function () {
var names = ...........
$(document).ready(function () {
$('#search-name').autocomplete({
source: names
});
});
});
</script>
如果我使用硬编码,那么它可以工作,但我想使用存储在数据库中的名称。是否可以?
硬编码示例:
var names = ["abc", "xyz"];