查看帖子表格是否返回null?

时间:2019-03-04 04:06:40

标签: c# .net asp.net-core asp.net-core-mvc

我在使用表单返回模型时遇到问题。

问题是当我提交表单时,即使我已指定返回模型,值仍为空

这是我的控制人

https://i.stack.imgur.com/7P5uY.png

这是我的返回null的视图。

@model MyEnglishDictionary.Models.Dictionary
@{
    ViewData["Title"] = "Create";
}
<h2>Create</h2>
<form method="post" asp-action="Create">
    <div class="p-4 border rounded">
        <div asp-validation-summary="ModelOnly" class="text-danger"></div>
        <div class="form-group row">
            <div class="col-2">
                <label asp-for="Word"></label>
            </div>
            <div class="col-5">
                <input asp-for="Word" class="form-control" />
            </div>
            <span asp-validation-for="Word" class="text-danger"></span>
        </div>

        <div class="form-group row">
            <div class="col-2">
                <label asp-for="Meaning"></label>
            </div>
            <div class="col-5">
                <input asp-for="Meaning" class="form-control" />
            </div>
            <span asp-validation-for="Meaning" class="text-danger"></span>
        </div>

        <div class="form-group row">
            <div class="col-2">
                <label asp-for="Pronunciation"></label>
            </div>
            <div class="col-5">
                <input asp-for="Pronunciation" class="form-control" />
            </div>
            <span asp-validation-for="Pronunciation" class="text-danger"></span>
        </div>
        <br />
        <div class="form-group">
            <input type="submit" class="btn btn-primary" value="Create" />
            <a asp-action="Index" class="btn btn-success">Back To List</a>
        </div>
    </div>
</form>
@section Scripts{
    @{ await Html.RenderPartialAsync("_ValidationScriptsPartial"); }
}

编辑

这是我的字典控制器。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using MyEnglishDictionary.Data;
using MyEnglishDictionary.Models;

namespace MyEnglishDictionary.Controllers
{
    public class DictionaryController : Controller
    {
        private readonly ApplicationDbContext _db;

        public DictionaryController(ApplicationDbContext db)
        {
            _db = db;
        }


        public IActionResult Index()
        {
            return View(_db.Dictionaries.ToList());
        }

        public IActionResult Create()
        {
            return View();
        }

        [HttpPost]
        [ValidateAntiForgeryToken]
        public async Task<IActionResult> Create(Models.Dictionary word)
        {
            if(!ModelState.IsValid)
            {
                return View(word);
            }

            _db.Add(word);
            await _db.SaveChangesAsync();

            return RedirectToAction(nameof(Index));
        }
    }
}

这是我的字典模型

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;

namespace MyEnglishDictionary.Models
{
    public class Dictionary
    {
        [Key]
        public int Id { get; set; }
        [Required]
        public string Word { get; set; }
        [Required]
        public string Meaning { get; set; }
        [Required]
        public string Pronunciation { get; set; }
        public string Link { get; set; }
        public DateTime Date { get; set; }
    }
}

我正在使用Net Core 2.1,但是我有一些项目使用相同的方法将表单模型从View传递到控制器,并且它们可以正常工作。

3 个答案:

答案 0 :(得分:1)

您需要注意参数和字段的名称。

对于您的问题,这是由于您定义的字段Word和参数word导致绑定失败的原因。

尝试将public async Task<IActionResult> Create(Models.Dictionary word)更改为public async Task<IActionResult> Create(Models.Dictionary dictionary)

答案 1 :(得分:1)

word参数名更改为_word之类的东西,似乎编译器不接受它作为c#中的参数名。

public async Task<IActionResult> Create(Models.Dictionary _word)
{
    if(!ModelState.IsValid)
    {
        return View(_word);
    }

    _db.Add(_word);
    await _db.SaveChangesAsync();

    return RedirectToAction(nameof(Index));
}

顺便说一句,我在保留关键字DataFrame.reset_index

中没有看到它

答案 2 :(得分:0)

您必须将属性绑定到模型。就您而言:

public async Task<IActionResult> Create([Bind("Word, Meaning, Pronounciation")] Dictionary word)

进一步阅读: Model Binding