将所选项目传递给 ajax 函数
<a4j:jsFunction name="addTag" action="#{serverBean.irrelevantMethod(_tagId)}">
<a4j:param name="param1" assignTo="#{_tagId}"/>
</a4j:jsFunction>
<rich:autocomplete autocompleteList="#{tags}" mode="ajax" var="_tag"
fetchValue="#{_tag.id}" onselectitem="addTag();" />
问题与 onselectitem 有关:如何将所选项目(应该是 _tag.id)作为参数传递给 jsFunction 'addTag'?
我已经尝试过:
onselectitem="addTag('#{_tag.id}')"
但它不起作用。
我想要的是在发生自动完成选择时将选定的标签(其 id)发送到服务器。如果上述尝试注定失败,那么实现这一目标的最佳方法是什么?
<a4j:jsFunction name="addTag" action="#{serverBean.irrelevantMethod(_tagId)}">
<a4j:param name="param1" assignTo="#{_tagId}"/>
</a4j:jsFunction>
<rich:autocomplete autocompleteList="#{tags}" mode="ajax" var="_tag"
fetchValue="#{_tag.id}" onselectitem="addTag();" />
The question is related to onselectitem: how to pass the selected item, which should be _tag.id, to the jsFunction 'addTag' as a parameter?
I have tried:
onselectitem="addTag('#{_tag.id}')"
but it doesn't work.
What I want is to send the selected tag (its id) to server when autocomplete selection occurs. What would be the best way to achieve this if the above is a doomed attempt.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不相信有一种方法可以传递这样的参数,但 action="#{irrelevantMethod(_tagId)}" 肯定行不通。它将尝试在服务器上找到它。
I don't believe there is a way to pass a param like that, but action="#{irrelevantMethod(_tagId)}" will definitely not work. It will try to find it on the server.