1

何を試しても、投稿画像は常にnullであるか、オブジェクト参照がオブジェクトのインスタンスに設定されていません。

テーブルにマップする post クラスと images クラスがあります (最初に EF コードを使用)

これが私のコードです:

意見:

<h2>Create</h2>
@using (Html.BeginForm("Create", "Admin", FormMethod.Post, new{ enctype =         "multipart/form-data" }))
{

@Html.ValidationSummary(true)

@Html.LabelFor(post => post.Post.Blog)
@Html.DropDownListFor(post => post.Post.BlogId, Model.BlogList)
@Html.LabelFor(post => post.Post.Category)
@Html.DropDownListFor(post => post.Post.CategoryId, Model.CategoryList)

@Html.LabelFor(post => post.Post.Title)
@Html.EditorFor(post => post.Post.Title)
<br />


@Html.LabelFor(post => post.Post.Content)
@Html.EditorFor(post => post.Post.Content)
    <br />
<input type="file" name="uploadImage" value="Upload" />
<input type="submit" value="Create" />
}

アクション方法:

  [HttpPost]
    public ActionResult Create(Post post, HttpPostedFileBase image)
    {

        if (ModelState.IsValid)
        {
            var postBlog = _repository.Blogs.Single(b => b.BlogId == post.BlogId);
            post.Created = DateTime.Now;
            postBlog.Posts.Add(post);



                PostImage newImage = new PostImage()
                                         {
                                             MimeType = image.ContentType,
                                             ImageData = new byte[image.ContentLength],
                                             PostId = post.PostId
                                         };
                _repository.AddImage(newImage);



            _repository.Save();
            return RedirectToAction("Index");

        }
4

1 に答える 1

3

どっ!問題は、入力要素に「値」を設定したことでした。正しくバインドするには、input type="file" name="Image" /> だけが必要です

于 2012-10-15T17:30:32.190 に答える