MVCデザインパターンは、URLをフォルダ構造を指すように書き換えるためのものではありません。これを行うことができますが、それは確かにその主な目的ではありません。静的コンテンツのURL構造を作成する場合は、IISに組み込まれたURL rewritingの機能を使用する方が簡単です。上記の例を使用
が
public class FoodController : Controller
{
public ActionResult ViewDishByTag(string itemType, string itemTag)
{
// If an itemType is displayed without itemTag, return an 'index' list of possible dishes...
// Alternatively, either return a "static" view of your page, e.g.
if (itemTag== "pad-thai")
return View("PadThai"); // where PadThai is a view in your shared views folder
// Alternatively, look up the dish information in a database and bind return it to the view
return ("RecipeView", myRepo.GetDishByTag(itemTag));
}
}
、あなたのルートは次のように少し見えるかもしれません:あなたは、完全なMVCアプリケーションを作成する場合
は、例えば、あなたの意見を提供するためにFoodController
とDrinkController
を設定
routes.MapRoute(
"myRoute",
"{controller}/{itemType}/{itemTag}",
new
{
controller = UrlParameter.Required,
action = "ViewDishByTag",
itemtype = UrlParameter.Optional,
itemTag = UrlParameter.Optional
}
);
あなたの質問には実装に関する詳細が含まれていないので、何かを広げたいのであれば、質問を更新してください。
あなたの説明に感謝します。 – Dkong