gpt4 book ai didi

html - 形成 POST 数组 : IIS vs Apache

转载 作者:可可西里 更新时间:2023-11-01 13:15:57 27 4
gpt4 key购买 nike

在一些测试中,我发现 Apache 服务器上的表单 POST 数组需要与 IIS 服务器上的不同。例如。

Apache :

<form method="post">
<input type="hidden" name="a[]" value="asd" />
<input type="hidden" name="a[]" value="cvbcv" />
<input type="submit" name="b" value="Submit" />
</form>

使用 MVC3 框架的 IIS:

<form method="post">
<input type="hidden" name="a" value="asd" />
<input type="hidden" name="a" value="cvbcv" />
<input type="submit" name="b" value="Submit" />
</form>

对于长度为 2 的名为 a 的数组,两者都给出相同的结果。在堆栈中的什么时候进行评估?网络服务器、浏览器等

注意:在每个服务器上使用相反的符号无法生成数组。

最佳答案

这可能是浏览器问题。我刚刚在 IE 9 和 Chrome 中试过这段代码。

<form action="@Url.Action("Index", "Default")" method="post">
<input type="hidden" name="vals[]" value="1"/>
<input type="hidden" name="vals[]" value="2"/>
<input type="submit" name="button" value="Go" />
</form>

和 Controller

    [HttpPost]
public ActionResult Index(string button, string[] vals)
{
return null;
}

在 Chrome 中,vals 是一个长度为 1 的数组,唯一的值是 1

在 IE9 中,valsnull

关于html - 形成 POST 数组 : IIS vs Apache,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9487933/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com