关于struts2的传值问题

发布于 2021-11-28 23:34:54 字数 5044 浏览 844 评论 4

新人想问下 关于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() {
        try {
            iCustomer.updateType(customerUpdateTypeDTO);
        } catch (Exception e) {
            logger.error("AbnormalCustomerAction.updateCoustmoerType", e);
            return ERROR;
        }
        return null;

    }


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 但是我改了后还是不行 求各位大神帮忙看看 任务期限快到了 卡在这里一天了!!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(4

水水月牙 2021-12-02 03:20:09

你那种往action传值是不对的,ajax把你 的传的参数封装成customer对象,你在后台定义customer对象就好了

夜无邪 2021-12-02 02:56:07

1 发代码请格式化

2 发action类代码

私藏温柔 2021-11-30 11:35:34

恩 问题找到了 确实是ajax的问题

夜无邪 2021-11-29 08:41:41

应该是你ajax这里写的有问题,

而且该用OGNL表达式的用表达式写。action没贴出来没法具体分析

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