コントローラーからビューにデータを渡したい。私のディナー コントロールには、編集アクションがあります。コードは
//
// GET: /Dinner/Edit/5
public ActionResult Edit(int id)
{
var dinner = _repository.GetDinner(id);
ViewData["Countries"] = new SelectList(PhoneValidator.AllCountries, dinner.Country);
return View(dinner);
}
次に、ドロップダウン リストを使用して、ビューの編集ページに国の情報を表示したいと考えています。私のコードは
<div class="editor-label">
@Html.EditorFor(model => model.Country)
</div>
<div class="editor-field">
@Html.DropDownList("Country", ViewData["Countries"] as SelectList)
@Html.ValidationMessageFor(model => model.Country)
</div>
次に、この行でエラーが発生します
@Html.DropDownList("Country", ViewData["Countries"] as SelectList)
エラー情報は
The ViewData item that has the key 'Country' is of type 'System.String' but must be of type 'IEnumerable<SelectListItem>'
ノート:
- ディナー テーブルに「Country」プロパティがあります。Country の型は String です。
- エラー行の「国」は、このフィールドの形式で表示名を定義しているだけだと思います。したがって、エラーは inresonabel のようです。
クラス名DinnerViolationがあります。このクラスには、EditコントローラーでSelectListの値を設定するために使用したallcontriesを取得するgetメソッドがあります。コードを確認してください。
public class PhoneValidator { static IDictionary<string, Regex> countryRegex = new Dictionary<string, Regex>() { { "USA", new Regex("^[2-9]\\d{2}-\\d{3}-\\d{4}$")}, { "UK", new Regex("(^1300\\d{6}$)|(^1800|1900|1902\\d{6}$)|(^0[2|3|7|8]{1}[0-9]{8}$)|(^13\\d{4}$)|(^04\\d{2,3}\\d{6}$)")}, { "Netherlands", new Regex("(^\\+[0-9]{2}|^\\+[0-9]{2}\\(0\\)|^\\(\\+[0-9]{2}\\)\\(0\\)|^00[0-9]{2}|^0)([0-9]{9}$|[0-9\\-\\s]{10}$)")}, }; public static bool IsValidNumber(string phoneNumber, string country) { if (country != null && countryRegex.ContainsKey(country)) return countryRegex[country].IsMatch(phoneNumber); else return false; } public static IEnumerable<string> AllCountries { get { return countryRegex.Keys; } } }
}
何か役に立ちますか?ありがとう