分类字段上的 form_set_error?
虽然 form_set_error('field_firstname', t('message'));
工作正常,但如何对多个分类字段之一执行相同操作?例如 form_set_error('taxonomy[5]', t('message'));
(这不起作用)。有人可以帮忙吗?
While form_set_error('field_firstname', t('message'));
works fine, how can I do the same for one of several taxonomy fields? e.g. form_set_error('taxonomy[5]', t('message'));
(which doesn't work). Can anyone help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
找到了答案。在这里,对于可能遇到同样问题的任何人:
所以
form_set_error('taxonomy][5', t('message'));
工作得很好。Found the answer. Here it is, for anyone who might have the same problem:
So
form_set_error('taxonomy][5', t('message'));
works perfectly.