NerdDinnersの例に従って、厳密に型指定されたマスター ページを作成することに興味があります。これを実現するために、マスター ページのデータを取得するベース コントローラーを使用します。他のすべてのコントローラーは、このクラスを継承します。同様にViewModels
、マスター ページとその他のビューについても同様です。ビューViewModel
クラスは、マスター ページのViewModel
.
質問
ViewModel
子コントローラーは、マスター ページ自体に関連するプロパティを設定せずに、マスター ページのデータがビューに渡されるようにするにはどうすればよいですか?
マスター ページには多数のボタンが表示されます。これらのボタンは XML ファイルで決定されるため、作成するButtons
クラスになります。
MasterPage ViewModel コード スニペット
using System.Collections.Generic;
namespace Site1.Models
{
public class MasterViewModel
{
public List<Button> Buttons{set; get;}
}
}
意見ViewModel
namespace Site1.Models
{
public class View1ViewModel : MasterViewModel
{
public SomeDataClass SomeData { get; set; }
}
}
ベースコントローラー
using System.Collections.Generic;
using System.Web.Mvc;
using Site1.Models;
namespace Site1.Controllers
{
public abstract class BaseController : Controller
{
protected MasterViewModel model = new MasterViewModel();
public BaseController()
{
model.Buttons = new List<Button>();
//populate the button classes (doesn't matter how)
PopulateButtons(model.Buttons);
}
}
}
ビューのコントローラー:
using System.Web.Mvc;
namespace Site1.Controllers
{
public class View1Controller : BaseController
{
public ActionResult Index()
{
Models.View1ViewModel viewModel = new Models.View1ViewModel();
SomeDataClass viewData = new SomeDataClass()
//populate data class (doesn't matter how)
PopulateDataClass(viewData);
viewModel.SomeData = viewData;
//I WANT TO ELIMINATE THE FOLLOWING LINE!
viewModel.Buttons = model.Buttons;
return View("Index", viewModel);
}
}
}
マスター ページは を継承しSystem.Web.Mvc.ViewMasterPage<Site1.Models.MasterViewModel>
ます。
ビューは を継承しSystem.Web.Mvc.ViewMasterPage<Site1.Models.View1ViewModel>
ます。