在我的家(索引)页面上,我有两个部分,一个呈现搜索表单,另一个搜索结果:
<div class="row-fluid well">
<div class="span6">
@Html.Partial("~/Views/Search/_BasicPropertySearchPartial.cshtml")
</div>
<div class="span6" id="basic-property-search-results">
@Html.Partial("~/Views/Search/_BasicPropertySearchResultsPartial.cshtml")
</div>
</div>
在我的SearchController
GET操作中,返回搜索表单:
[HttpGet]
public ActionResult BasicPropertySearch()
{
return PartialView("_BasicPropertySearchPartial");
}
POST操作从表单获取用户输入并根据查询返回结果:
[HttpPost]
public ActionResult BasicPropertySearch(BasicPropertySearchViewModel viewModel)
{
var predicate = PredicateBuilder.True<ResidentialProperty>();
if (ModelState.IsValid)
{
using(var db = new LetLordContext())
{
predicate = predicate.And(x => x.HasBackGarden);
//...
var results = db.ResidentialProperty.AsExpandable().Where(predicate).ToList();
GenericSearchResultsViewModel<ResidentialProperty> gsvm =
new GenericSearchResultsViewModel<ResidentialProperty> { SearchResults = results };
return PartialView("_BasicPropertySearchResultsPartial", gsvm);
}
}
ModelState.AddModelError("", "Something went wrong...");
return View("_BasicPropertySearchPartial");
}
我创建了一个通用视图模型,因为搜索结果可能是不同类型的列表:
public class GenericSearchResultsViewModel<T>
{
public List<T> SearchResults { get; set; }
public GenericSearchResultsViewModel()
{
this.SearchResults = new List<T>();
}
}
POST操作返回以下视图:
@model LetLord.ViewModels.GenericSearchResultsViewModel<LetLord.Models.ResidentialProperty>
@if (Model.SearchResults == null) // NullReferenceException here!
{
<p>No results in list...</p>
}
else
{
foreach (var result in Model.SearchResults)
{
<div>
@result.Address.Line1
</div>
}
}
我在GET和POST操作上放置了断点,并且在之前或者命中之前抛出了异常。
是否导致此问题是因为index.cshtml
在SearchController
中有机会进行GET / POST之前正在呈现?
如果是这样,这是否意味着它是路由问题?
最后,我认为构造函数中的new
ing SearchResults
会克服NullReferenceExceptions
?
反馈意见。
答案 0 :(得分:1)
似乎整个Model
为空。您需要为Html.Partial
调用提供部分视图模型,或使用Html.Action
使用操作和控制器名称调用两个控制器(子)操作。
有关详细信息,请参阅MSDN。