验证警报:在 CCK 表单中检测到非法选择
我正在通过 ajax 加载所选国家/地区的状态选择选项,默认情况下状态选项是
无
以下参考stackoverflow问题问了几天b4,
如何使用geoname模块为国家/地区城市设置多选CCK字段类型?
到目前为止我找不到任何答案,所以尝试了我自己的方式
如果选择了国家/地区,则根据国家/地区必须从 geoname api 列出,因此我通过 ajax 进行了操作,并将其附加到对应于城市的列表中。
最后提交后我得到了错误
检测到非法选择。 请联系网站管理员。
I am loading state select option through ajax for the selected country and by default the state option is
none
with the below reference stackoverflow issue asked few days b4,
how to set multi select CCK Field type for country state city with geoname module?
I couldn't find any answer till now, so tried my own way by
if country selected, based on the country the state have to listed from geoname api so i did it through ajax and appended to the list correspondingly to city.
finally after submitting i got error
An illegal choice has been detected.
Please contact the site administrator.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
表单系统自动验证选择的选定值,并且只允许那些在“#options”中定义的值。在 D6 中没有办法解决这个问题,在 D7 中,有一个标志可以禁用它。
您需要使用#ahah 并在服务器端重建表单。以下模块可能对您有用:
The form system automatically validates the selected value of a select and only allows those which are defined in '#options'. There is no way around that in D6, in D7, there is a flag to disable that.
You need to use #ahah and rebuild the form on the serverside. The following modules might be useful to you: