我有一个这样定义的 JavaScript 函数:
function onQuickSearchClick(s) {
var query = s.GetText();
$.post('/Search/', { query: query });
}
现在我想用 SearchController 中的查询文本调用视图“搜索”。我怎样才能做到这一点?
执行此操作时,不会显示任何视图:
搜索控制器.cs:
public ActionResult Index(string query)
{
// Can't do "return View(query)" here, because this would be interpreted as the view name
return View();
}
如何将查询参数传递给我的 Views/Search/Index.cshtml?