当前位置: 代码迷 >> Java Web开发 >> json+strusts异常:如何接收int型数据呢?Error setting expression 'age' with value ['6789' ]
  详细解决方案

json+strusts异常:如何接收int型数据呢?Error setting expression 'age' with value ['6789' ]

热度:834   发布时间:2016-04-16 21:33:34.0
json+strusts错误:怎么接收int型数据呢?-Error setting expression 'age' with value ['6789', ]
上图和贴代码:

 这是web页面输入框:


js中获取输入的年龄数据:
    var $btn = $("input.btn");//获取按钮元素
             //给按钮绑定点击事件
            $btn.bind("click",function(){
                $.ajax({
                    type:"post",
                    url:"simpleton/excuteAjaxJsonAjaxAction",//处理ajax请求的action,excuteAjax为处理方法名,JsonAction为action名
                  data:{//设置数据源
                        age:$("input[name=age]").val()                       
                    },

                    dataType:"json",//设置需要返回的数据类型
                    success:function(data){
                        var d = eval("("+data+")");//将数据转换成json类型                         
                        $("#s_age").text(""+d.age+"");                     
                    },
                    error:function(){
                        alert("系统异常,请稍后重试!");
                    }
                });
            });

后台action接收jquery请求传来的年龄数据:
private String result;
private int age;//注意是int型接收
  public int getAge() {
       return this.age;
   }
   public void setAge(int age) {
       this.age = age;
   }
   public String getResult() {
       return result;
   }
   public void setResult(String result) {
       this.result = result;
   }
public String excuteAjax(){        
       try {
           JSONObject jo = new JSONObject();
           jo.element("age", age);//问题来了,无法通过setter把请求中age的值获取到
           result=jo.toString();
              } catch (Exception e) {
           e.printStackTrace();
       }
       return SUCCESS;
   }

问题来了,求救各位大神大牛们,谢谢啦:
比如页面中输入6789,报错【注意后台获取age是int型数据】:
严重: Developer Notification (set struts.devMode to false to disable this message):
Unexpected Exception caught setting 'age' on 'class testaction.JsonAjaxAction: Error setting expression 'age' with value ['6789', ]


------解决思路----------------------
age 页面传来的是什么 ,就是字串么?['6789', ]
------解决思路----------------------
data:{//设置数据源
                        age:$("input[name=age]").val()                       
                    },

你  alert ($("input[name=age]").val()   )  看看是多少。
------解决思路----------------------
按理来说struts2是可以自动转换int类型的参数,如果不行的话就这样

   public void setAge(String age) {
       this.age = Integer.parseInt(age);
   }

------解决思路----------------------
你可以在火狐浏览器上fixbug 看网络请求,到底age是传了什么值过来
  相关解决方案