@model Customer
@Html.Partial("_UserProfile", (UserProfile)Model.UserProfile)
私はこのコードを実行すると、私はこのエラーを取得:(PartialView)モデルアイテムは、「顧客」タイプであるが、この辞書は、タイプのモデルアイテムが必要です「のUserProfile」
The model item passed into the dictionary is of type 'Customer', but this dictionary requires a model item of type 'UserProfile'.
を
部分ビュー_UserProfileは厳密に型指定されています。
これらのフィールドを編集したいと考えています。 提案がありますか?
また、Html.ActionとHtml.Partialの違いを確認すると便利です。https://stackoverflow.com/questions/16886585/html-partial-skips-the-controller-action –