我正在尝试学习如何使用TryUpdateModel,但我无法使其工作,您可以在下面找到我的代码:
控制器端
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace EFW6.Controllers
{
public class HomeController : Controller
{
//
// GET: /Home/
private WorkFlowContext context = new WorkFlowContext();
public ActionResult Index()
{
return View();
}
[HttpPost]
public string UploadFile(FormCollection form)
{
Files file = new Files();
if (TryUpdateModel(file, form.ToValueProvider()))
{
return "True " + file.filePath;
}
else
{
return "False";
}
}
}
}
查看方
@{
ViewBag.Title = "index";
}
<h2>@Model</h2>
<form method="post" action="Home/UploadFile">
<input type="text" name="filePath">
<input type="submit">
</form>
模型类
class Files
{
public string filePath;
}
当我返回文件路径的值时,它返回任何值,而它返回值为True作为操作的结果。
答案 0 :(得分:0)
问题是我在 文件 类中使用字段而不是属性
您必须将其更改为
class Files
{
public string FilePath { get; set; }
}