新人想问下 关于Struts2框架的web项目的传值问题
网页代码
function updateCustomerType(id,type){
$.ajax({
url : "<%=contextPath%>/cus/abnormalCus!updateCoustmoerType.action",
data : {
"customer.cusId" : id,
"customer.customerType" : type
},
type : "post",
cache : false,
async : false,
success : function(result) {
window.location.reload();
},
error : function(error) {
//alert(error);
}
});
}
实现代码
private CustomerUpdateTypeDTO customerUpdateTypeDTO;
/** 修改用户级别 */
public String updateCoustmoerType() {}
public CustomerUpdateTypeDTO getCustomerUpdateTypeDTO() {
return customerUpdateTypeDTO;
}
public void setCustomerUpdateTypeDTO(CustomerUpdateTypeDTO customerUpdateTypeDTO) {
this.customerUpdateTypeDTO = customerUpdateTypeDTO;
}
实体代码
public class CustomerUpdateTypeDTO implements Serializable{
private static final long serialVersionUID = 1L;
private Integer cusId;
private Integer customerType;
public Integer getCusId(){
return cusId;
}
public void setCusId(Integer cusId){
this.cusId = cusId;
}
public int getCustomerType() {
return customerType;
}
public void setCustomerType(Integer customerType) {
this.customerType = customerType;
}
}
报错
[WARN]-17:51:01-OgnlValueStack - Error setting expression 'customer.customerType' with value '[Ljava.lang.String;@54218eec'
ognl.OgnlException: target is null for setProperty(null, "customerType", [Ljava.lang.String;@54218eec)
at ognl.OgnlRuntime.setProperty(OgnlRuntime.java:2326)
at ognl.ASTProperty.setValueBody(ASTProperty.java:127)
at ognl.SimpleNode.evaluateSetValueBody(SimpleNode.java:220)
at ognl.SimpleNode.setValue(SimpleNode.java:301)
at ognl.ASTChain.setValueBody(ASTChain.java:227)
at ognl.SimpleNode.evaluateSetValueBody(SimpleNode.java:220)
at ognl.SimpleNode.setValue(SimpleNode.java:301)
at ognl.Ognl.setValue(Ognl.java:737)
at com.opensymphony.xwork2.ognl.OgnlUtil.setValue(OgnlUtil.java:234)
我一开始int 类型 出的这个问题 网上找了找好像是什么类型不对的问题 然后看到有人改成Integer 但是我改了后还是不行 求各位大神帮忙看看 任务期限快到了 卡在这里一天了!!
应该是你ajax这里写的有问题,
而且该用OGNL表达式的用表达式写。action没贴出来没法具体分析
恩问题找到了确实是ajax的问题1发代码请格式化
2发action类代码
你那种往action传值是不对的,ajax把你的传的参数封装成customer对象,你在后台定义customer对象就好了版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。