ASP.Net 4、MVC 3、Razor、C#でブログの作成に取り組んでいます。2つの別々のテーブルがあります。実際のブログ投稿の場合は1、カテゴリの場合は関係テーブル。カテゴリはドロップダウンとして表示されます。ユーザーがフォームにすでに入力した内容を失わないように、Ajaxを使用して新しいカテゴリを追加する機能を追加したいと思います。これを達成するための最良の方法は何でしょうか?これが私が今持っているものです。
コントローラコード
public ActionResult Create()
{
ViewBag.category_id = new SelectList(_db.Categories, "id", "category_name");
return View();
}
かみそりの眺め
@model NPP.Models.News
@{
ViewBag.Title = "Create News Item";
}
<h2>Create News Item</h2>
<script src="@Url.Content("~/Scripts/jquery.validate.min.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/jquery.validate.unobtrusive.min.js")" type="text/javascript"></script>
@using (Html.BeginForm()) {
@Html.ValidationSummary(true)
<fieldset>
<legend>News</legend>
<div class="editor-label">
@Html.LabelFor(model => model.news_title, "Title")
</div>
<div class="editor-field">
@Html.EditorFor(model => model.news_title)
@Html.ValidationMessageFor(model => model.news_title)
</div>
<div class="editor-label">
@Html.LabelFor(model => model.news_content, "Content")
</div>
<div class="editor-field">
@Html.TextAreaFor(model => model.news_content)
@Html.ValidationMessageFor(model => model.news_content)
</div>
<div class="editor-label">
@Html.LabelFor(model => model.news_teaser, "Teaser (optional)")
</div>
<div class="editor-field">
@Html.TextAreaFor(model => model.news_teaser)
@Html.ValidationMessageFor(model => model.news_teaser)
</div>
<div class="editor-label">
@Html.LabelFor(model => model.category_id, "Category")
</div>
<div class="editor-field">
@Html.DropDownList("category_id", String.Empty)
@Html.ValidationMessageFor(model => model.category_id)
</div>
<p>
<input type="submit" value="Create" />
</p>
</fieldset>
}
<div>
@Html.ActionLink("Back to List", "Index")
</div>
よろしくお願いします。私のレイアウトページには、使用したいjqueryが含まれています。