gpt4 book ai didi

ajax - JSF/Rich Faces 中的 data.foo 语法是什么

转载 作者:行者123 更新时间:2023-12-01 05:16:22 25 4
gpt4 key购买 nike

JSF/Rich Faces 中的 data.foo 语法是什么?

比如说,

  <a4j:support event="onchange"  action="#{bean.retrieveStates}"  
reRender="states_dropDown" data="#{student}"></a4j:support>

我在数据属性中传递学生对象。我可以访问托管 bean 吗?文档说这个 “开发人员根据 AJAX 请求在客户端传递的序列化(默认使用 JSON)数据。可通过“data.foo”语法访问它”

谁能解释一下。

最佳答案

来自 this blogpost :

Another attribute is data, which allows you to get any additional data from the server during an Ajax request. The data attribute can simply point to a bean property via EL, and the data will be serialized in JSON format and available on the client side. Here’s an example:

<a4j:commandButton value="Submit" reRender="out"
data="#{bean.text}"
oncomplete="alert(data)"/>

是的 - 您可以访问托管 bean 的任何属性并在 oncomplete 中引用它(最常见)。

关于ajax - JSF/Rich Faces 中的 data.foo 语法是什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2005114/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com