6
我嘗試列出從SearchController發送的數據提供的模型數據。但是,我得到了這個錯誤,我找不到如何解決它。文件中只允許有一個「模型」語句
只有一個「樣板」的語句是允許在一個文件中。
這裏是代碼導致錯誤:
@if (ViewBag.Type == "nomPoste")
{
@model IEnumerable<Monitoring.Models.PosteModel>
if (Model != null)
{
foreach (var item in Model)
{
//...
}
}
if (Model == null)
{
//...
}
}
@if (ViewBag.Type == "nomApplication")
{
@model IEnumerable<Monitoring.Models.AppMetierModel>
if (Model != null)
{
foreach (var item in Model)
{
//...
}
}
if (Model == null)
{
//...
}
}
如何修復它,好嗎?