1

我遇到了一个问题,chrome 和 opera 可以正常工作,但是当我在 url 中使用主机名或 ip 而不是 localhost 时,有一个表单适合 Internet Explorer 9 和 10。还有另一个表单对象适用于只有文本框和提交按钮的所有内容。

我遇到问题的表单有文本字段、选择列表、下拉列表和复选框。

我没有收到来自 Internet Explorer 中提交按钮的事件,但我在其他浏览器中收到了。

错误:

Error Code:
RequestBindingException: Unable to bind request
Stack:
at ServiceStack.WebHost.Endpoints.RestHandler.GetRequest(IHttpRequest httpReq, IRestPath restPath) at ServiceStack.WebHost.Endpoints.RestHandler.ProcessRequest(IHttpRequest httpReq, IHttpResponse httpRes, String operationName)

编码 :

<form style="width:inherit; margin:4px" action="/search" method="post"><label style="color: white;">Quick Search</label><br>
                <label style="color: white;">Colors:</label>
                <br/>
                @*<input style="width:100px;" name="Colors" type="text"><br>*@
                <select name="Colors" style="height:200px; width:100px;" multiple>
                    @{
                        @:<option value ="Any">Any</option>
                        foreach(Color colors in Repositories.TypeGetters.GetAllColors())
                        {
                            @:<option value ="@colors.Description">@colors.Description</option>
                        }
                    }
                </select><br>
                <input style="color: white; font-size:small" type="checkbox" name="PredominantColor" value="1" />
                <label style="color: white;">Predominant Color?</label><br />
                <label style="color: white; width:30px">D1</label><label style="color: white; width:30px">xD2:</label><br />
                <input style="width:30px" name="D1" type="text"><label style="color: white;">mm. X </label>
                <input style="width:30px" name="D2" type="text"><label style="color: white;">mm.</label><br />
                <label style="color: white;">Number of Layers:</label><br>
                <input style="width:30px" name="LayersCount" type="text"><br>
                <label style="color: white; width:100px">Flexibility:</label><br/>
                <select style="width:100px" name="Flexibility">
                    @{
                        @:<option value ="Any">Any</option>
                        foreach(FlexibilityType flex in Repositories.TypeGetters.GetAllFlexTypes())
                        {
                            @:<option value ="@flex.Description">@flex.Description</option>
                        }
                    }
                </select> <br />
                <button name="SearchType" type="submit" value="2" style="float:right; margin-right:20px;">Submit</button><br />
            </form>
4

1 回答 1

1

随着事情的发展,我花了一整天的时间来解决这个问题。而不是使用

<button name="SearchType" type="submit" value="2" style="float:right; margin-right:20px;">Submit</button>

我使用的标签

<input name="SearchType" type="submit" value="2" style="float:right; margin-right:20px;" /><br />

它解决了这个问题。

我无法理解或解释为什么 Internet Explorer 不能反过来工作,但这是可行的。我猜这是由于 IE 的 html5 支持问题。

于 2013-05-17T19:33:44.193 回答