微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

如何在ASP.NET Core MVC中获得按钮单击的价值?

如何解决如何在ASP.NET Core MVC中获得按钮单击的价值?

我试图了解控制器和视图之间的连接如何工作。我已经用标签asp-action设置了四个按钮,希望它允许我实现名为check

方法
<table style="width: 100%; margin-bottom: 25px">
    <tr>
        <td>
            <button name="button" style="background-color: transparent; color: yellow" 
                    type="button" value="cph" asp-action="check">København</button>
        </td>
        <td>
            <button style="background-color: transparent; color: yellow" type="button" value="odense" asp-action="check">Odense</button>
        </td>
        <td>
            <button style="background-color: transparent; color: yellow" type="button" value="aarhus" asp-action="check">Århus</button>
        </td>
        <td>
            <button style="background-color: transparent; color: yellow" type="button" value="aalborg" asp-action="check">Aalborg</button>
        </td>
    </tr>
</table>

我试图打印按钮的值

public IActionResult check(string button)
{
    Console.WriteLine(button);
    return View();
}

但是,它从不打印任何内容,也不会在方法上中断。我想实现的只是价值。我希望仅传递值而不做任何事情,例如

public striing check(string button)
{
    return button;
}

编辑: 我尝试关注此tutorial

解决方法

当我们从视图访问数据到控制器的action方法时,我们可以使用Parameter方法获取表单值,方法是使用输入字段 Name 和参数 Name 应该相同。因此,如果要获取按钮值,则它应该具有相同的Name值(但在示例代码中,只有第一个按钮具有name属性)。

第二,当我们使用<button>标签时,它将隐式提交表单,但是如果我们为<button>标签添加“ type ='button'”,则按钮将不会提交表单,因此未执行该操作方法。要解决此问题,您可以删除type="button"或将其更改为type="submit"

因此,您可以按以下方式修改代码(使用相同的名称值并删除type="button"):

<form>    
    <table style="width: 100%; margin-bottom: 25px">
        <tr>
            <td>
                <button name="button" style="background-color: transparent; color: yellow"
                         value="cph" asp-action="check">
                    København
                </button>
            </td>
            <td>
                <button name="button" style="background-color: transparent; color: yellow"  value="odense" asp-action="check">Odense</button>
            </td>
            <td>
                <button name="button" style="background-color: transparent; color: yellow" value="aarhus" asp-action="check">Århus</button>
            </td>
            <td>
                <button name="button" style="background-color: transparent; color: yellow" value="aalborg" asp-action="check">Aalborg</button>
            </td>
        </tr>
    </table>

</form>
<div>
    @TempData["ButtonValue"]
</div>

控制器中的代码:

    public IActionResult ButtonClick()
    {
        return View();
    }
    public IActionResult check(string button)
    {
        if(!string.IsNullOrEmpty(button))
        { 
            TempData["ButtonValue"] = string.Format("{0} button clicked.",button);
        }
        else
        {
            TempData["ButtonValue"] = "No button click!";
        }
        return RedirectToAction("ButtonClick");
    }

然后,结果如下:

enter image description here

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。