将所选项目传递给 ajax 函数

发布于 2024-11-28 23:43:18 字数 580 浏览 0 评论 0原文

<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 技术交流群。

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

发布评论

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

评论(1

那小子欠揍 2024-12-05 23:43:18

我不相信有一种方法可以传递这样的参数,但 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.

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