问题描述
jquery的post请求到jsf页面对应的Bean,post方法的参数url该怎么写,jQuery.post(url,data,success(data, textStatus, jqXHR),dataType),有没人知道的, 问题补充:还有,我想问在bean里怎么接受这个传过来的参数啊
解决方案
<w:textField id="customerName"> 你的bean那么是这个scm.salesOrderDetailFormBean对吧那么你post递交的url 你就写成这样吧scm.salesOrderDetailFormBean.postcustomerName然后再你的bean种定义方法public void postcustomerName(ActionEvent evt) {这个地方取到前台的customerName}和private String customerName;然后customerName对应的get/set方法
解决方案二:
贴下 jsf 页面 和对应的 bean...
解决方案三:
HttpServletRequest request = FacesContext.getCurrentInstance().getExternalContext().getRequest() Object obje = request.getParameter("参数");
解决方案四:
ajax数据中发送你的command类型组件的id到服务器,JSF会自动执行这个command的action方法
解决方案五:
访问URL是 bean对应的页面,然后参数是你的command 组件的id