1
我在.net core mvc項目中綁定嵌套的IFormFile時遇到問題。 如果我把IFormFile
放在嵌套視圖模型中,它不會在後期綁定它。 例如這不起作用:如果嵌套在視圖模型中,IFormFile未綁定
public class SomeVM
{
public GalleryVM Gallery { get; set; }
}
public class GalleryVM
{
public IFormFile UploadingImage { get; set; }
//gallery properties...
}
查看:
@model SomeVM
<form method="post" enctype="multipart/form-data">
<input type="file" name="Gallery.UploadingImage" />
<input type="submit" value="save" />
</form>
一些代碼是爲了簡明扼要省略。