TryUpdateModel Asp.NetMVC不工作

7vux5j2d  于 2023-05-08  发布在  .NET
关注(0)|答案(1)|浏览(184)

我试图学习如何使用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作为操作的结果。

jv4diomz

jv4diomz1#

问题是我在***Files***类中使用字段而不是属性
我不得不把它改成这样

class Files
{
    public string FilePath { get; set; }
}

相关问题