0
나는 아래와 같은 기본보기가 있습니다.Asp.Net MVC 통과 매개 변수는
public PartialViewResult _StockGroupMenu(int? id)
{
var wrhStockGroup = db.WrhStockGroup.Include(w => w.RelatedWrhStockGroup).Where(p => p.RelatedWrhStockGroupId == id);
ViewBag.wrhRelatedStockGroupId = id;
ViewBag.stockGroupName = db.WrhStockGroup.Find(id).Name;
return PartialView(wrhStockGroup.ToList());
}
public PartialViewResult _Index(int? stockGroupId)
{
var relatedStockCards = stockCardService.GetStockCardsByGroupId(stockGroupId);
ViewBag.stockGroupId = stockGroupId;
ViewBag.stockGroupName = db.WrhStockGroup.Find(stockGroupId).Name;
return PartialView(relatedStockCards);
}
시나리오는 사용자가 그룹을 클릭하면, 내가 stockCardGroupContainer에 childGroupd 관련, 보여 또한 "stockCardContainer을"재고 카드를 표시해야하고,있다. 하지만 ViewBag.wrhRelatedStockGroupId _StockGroupMenu 메서드에서 설정하지만 다른 부분보기 때문에 두 번째 @ Html.Action 전달할 수 없습니다.