IE中的struts验证问题

发布于 2024-08-27 08:52:52 字数 616 浏览 6 评论 0原文

我正在使用 Struts 2.1.8 并在 IE 中面临验证问题。我收到以下错误,

An exception occurred: Error. Error message: Invalid argument. 

我尝试找出原因并发现以下内容。我生成的 javascript 代码是:

field = form.elements['district.name'];  
var error = "Enter only alphabets for district";  
if (continueValidation && field.value != null && !field.value.match("^[a-zA-Z ]*$")) {  
    addError(field, error);  
    errors = true;  
}  

我尝试通过将相同的代码放入函数中并在 onclick 事件中调用它来进行模拟。 addError() 方法抛出异常,原因是 field 变量。如果我将其更改为 field[0],它就可以正常工作。如何修复这个错误?

I am using Struts 2.1.8 and facing validation problem in IE. I am getting the following error

An exception occurred: Error. Error message: Invalid argument. 

I tried out to figure out the cause and found the following. My generated javascript code is:

field = form.elements['district.name'];  
var error = "Enter only alphabets for district";  
if (continueValidation && field.value != null && !field.value.match("^[a-zA-Z ]*$")) {  
    addError(field, error);  
    errors = true;  
}  

I tried to mock up by putting the same code in a function and calling it in onclick event. The method addError() throws the exception and the reason is field variable. If I change it to field[0], it works fine. How to fix this error?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

似狗非友 2024-09-03 08:52:52

检查生成的 HTML 源。在网络浏览器中打开页面,右键单击并选择查看源代码。输入字段的名称​​真的district.name吗?它不是像许多其他 MVC 框架一样以其他一些自动生成的键(可能是

的 ID/名称)为前缀/后缀吗?如果是这样,您需要相应地更改 JavaScript 代码,使其使用 HTML DOM 树中显示的正确元素名称。您知道,JavaScript 在客户端计算机上运行,​​只能看到生成的 HTML DOM 树,而不是负责生成 HTML 的“原始”服务器端代码。

Check the generated HTML source. Open the page in webbrowser, rightclick and choose View Source. Is the input field's name really district.name? Isn't it prefixed/suffixed with some other autogenerated key (possibly the ID/name of the <form>) like as many other MVC frameworks do? If so, you'll need to change the JavaScript code accordingly that it uses the right element name as it appears in the HTML DOM tree. You know, JavaScript runs at the client machine and only sees the generated HTML DOM tree, not the "original" server-side code which is responsible for generating the HTML.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文