Я попробовал метод загрузки файла из stackoverflow и успешно загрузил изображение с настройкой IHostEnvironment. Но я не могу понять в Editmodel. Я хочу удалить существующую фотографию и добавить новую в форме редактирования.
Вот модель:
[Key]
public int PostID { get; set; }
[Required]
[StringLength(160)]
public string Title { get; set; }
public string FeatureImage { get; set; }
Вот файл Create.cshtml.cs:
public class CreateModel : PageModel
{
private readonly RazorApp.Data.ApplicationDbContext _context;
private readonly IHostEnvironment hostingEnvironment;
public CreateModel(RazorApp.Data.ApplicationDbContext context, IHostEnvironment environment)
{
this.hostingEnvironment = environment;
_context = context;
}
[BindProperty]
public Post Post { get; set; }
[BindProperty]
public IFormFile Image { get; set; }
public async Task<IActionResult> OnPostAsync()
{
if (this.Image != null)
{
var fileName = GetUniqueName(this.Image.FileName);
var uploads = Path.Combine(hostingEnvironment.ContentRootPath, "wwwroot/uploads");
var filePath = Path.Combine(uploads, fileName);
this.Image.CopyTo(new FileStream(filePath, FileMode.Create));
this.Post.FeatureImage = fileName; // Set the file name
}
var emptyPost = new Post();
if (await TryUpdateModelAsync<Post>(
emptyPost,
"post",
p => p.Title, p => p.FeatureImage))
{
_context.Post.Add(Post);
await _context.SaveChangesAsync();
return RedirectToPage("./Index");
}
return Page();
}
private string GetUniqueName(string fileName)
{
fileName = Path.GetFileName(fileName);
return Path.GetFileNameWithoutExtension(fileName)
+ "_" + Guid.NewGuid().ToString().Substring(0, 4)
+ Path.GetExtension(fileName);
}
}
Как я уже сказал, загрузка изображения работает нормально. Но я не могу понять, для edit.cshtml.cs. Как я могу удалить существующую фотографию и добавить новое изображение?