使用javascript调用bean方法
我想在用户单击 inputText
组件时向用户显示选项列表。我需要使用 IceFaces 中的 onclick
属性通过 JavaScript 调用 bean 方法。
<ice:inputText id="inputText1" partialSubmit="true" value="" onclick="" />
我怎样才能实现这个目标?
I want to show a list of options to the user when he/she clicks on an inputText
component. I need to call a bean method by JavaScript using onclick
attribute in IceFaces.
<ice:inputText id="inputText1" partialSubmit="true" value="" onclick="" />
How can I achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
正如@Neall所说,您需要发起一个XMLHttpRequest并将数据返回给客户端。有很多方法可以做到这一点,我不知道您所指的框架,但一般来说,您可以启动 XMLHttpRequest,将一些参数(如果需要)传递给 Web 方法,例如,然后以 JSON 形式返回数据格式。当您发出请求时,它通常有一个成功的回调函数和一个错误的回调函数。在成功事件中,您可以解析 JSON 响应并使用它执行您需要执行的操作。
看这里,例如:
http://elegantcode.com/2009/02/21/javascript-arrays-via-jquery-ajax-to-an-aspnet-webmethod/
As @Neall said, you need to initiate an XMLHttpRequest and return the data to the client. There are many ways to do this and I don't know the framework you are referring to, but in general, you initiate the XMLHttpRequest passing some parameters -if needed- to a web method, for example, and then return the data in JSON format. When you issue the request it usually has a callback function for success and one for error. On the sucess event, you parse the JSON response and do whatever you need to do with it.
Look at here, for example:
http://elegantcode.com/2009/02/21/javascript-arrays-via-jquery-ajax-to-an-aspnet-webmethod/
当用户在客户端执行某些操作时,您似乎正在尝试运行服务器端代码。您可能想要启动 XMLHttpRequest。
XMLHttpRequest 基本上只是点击一个 URL,选择性地向浏览器返回一些数据。这就是人们通常所说的AJAX。 (对于异步 Javascript 和 XML - 尽管人们通常使用 JSON 而不是 XML。)
It looks like you are trying to run server-side code when the user takes some action on the client side. You probably want to initiate an XMLHttpRequest.
The XMLHttpRequest basically just hits a URL, optionally returning some data to the browser. This is what people usually call AJAX. (For Asynchronous Javascript And XML - although people usually use JSON instead of XML.)