如何将数据从表单外的视图传输到控制器或不创建新输入

我正在用 asp.net core 2.0 编写一个应用程序。


我有一些从视图发送到控制器的数据,但我也有我想传递给同一个控制器的数据,但它们不在表单中。


可以将此数据传递给同一个控制器,而我不必创建新的输入。


如何从表单外部或表单中将数据传递给控制器,但不创建新输入。


我有两个变量 @Model.MinUppercase ,@Model.MinLowercase 但我没有在表单中使用它们,如何将它们与表单中的变量一起传递给控制器?


@model Project2.Models.UserModel


<h1>Step2: Register</h1>

<div>

    @if (@ViewData["Message"] != null)

    {

        <div class="alert alert-danger space text-center">

            @ViewData["Message"]

        </div>

    }


@Model.MinUppercase

@Model.MinLowercase



    <center>

        <h2>Register form:</h2>

    </center>

    <div>


        <form asp-action="Middle" asp-controller="Home" method="POST" class="form-wrapper">

            <div class="input-group">

                <label>Login:</label>

                <input id="Login" asp-for="Login" type="text" class="input" size="35">

            </div>

            <div class="input-group">

                <label>Password:</label>

                <input id="Password" asp-for="Password" type="Password" class="input" size="35">

            </div>

            <div class="input-group">

                <label>Your Regex Description:</label>

                <input id="Description" asp-for="Description" type="text" class="input" size="35" value=@Model.Description>

            </div>

            <div class="input-group">

                <label>Your Regex:</label>

                <input id="Reg" asp-for="Reg" type="text" class="input" size="35" value=@Model.Reg>

            </div>

            <div class="input-group">


                <a asp-controller="Home" asp-action="CreateRegex">

                    <button type="button" class="btn btn-danger">Back</button>

                </a>

                    <button class="btn btn-success">Create</button>

            </div>

        </form>


    </div>


胡子哥哥
浏览 213回答 2
2回答

MMTTMM

在表单 html 内容中添加隐藏字段(使用 razor helper @Html.Hidden/For):@Html.Hidden("MyName", "Carlos")或者@Html.HiddenFor(i => i.PropertyOfYourModel)&nbsp;- 如果是您的模型的某些属性。

有只小跳蛙

由于 carlosfcmendes 已经回答,您可以添加带有隐藏字段的数据。或者,如果您想更灵活,您可以拦截表单提交并添加数据。
打开App,查看更多内容
随时随地看视频慕课网APP