1 回答

TA貢獻(xiàn)1805條經(jīng)驗(yàn) 獲得超10個(gè)贊
在您的 POST 創(chuàng)建控制器操作中,您沒(méi)有綁定 CityId。您正在綁定 CountryId,這是一個(gè)拼寫(xiě)錯(cuò)誤嗎?
[HttpPost]
[ValidateAntiForgeryToken]
public ActionResult Create([Bind(Include = "Id,Name,gender,Age,BloodType,CountryId,StateId,CityId")] Donator donator)
{
// add cityId to the bind parameters above
...
}
您需要將 html 幫助程序上的 City 更新為 CityId。
// please update first string parameter to CityId
@Html.DropDownList("CityId", new SelectList(string.Empty, "Value", "Text"), htmlAttributes: new { id = "city", @class = "form-control" })
- 1 回答
- 0 關(guān)注
- 175 瀏覽
添加回答
舉報(bào)