码迷,mamicode.com
首页 > Web开发 > 详细

ajax 调用 JSON.parse();

时间:2016-12-28 18:26:54      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:pat   erp   rtt   ndt   series   bsp   test   调用   control   

  $.ajax({
           type : "POST",
           data:{
            createStartTime:createStartTimes,
            createEndTime:createEndTimes
           },
           url : "<%=request.getContextPath()%>/numericalController/customerPer",
           dataType : "json",
           async: false,//同步
           success : function(result) {
            option.xAxis.data =JSON.parse(result.retDate);
            option.series[0].data = JSON.parse(result.cArr);
            option.series[1].data = JSON.parse(result.iArr);
            option.title.text = "会员使用率,会员总数"+JSON.parse(result.count);
                $("#createEndTime").datebox("setValue","");
                $("#createStartTime").datebox("setValue","");
            
           }
       });

ajax 调用 JSON.parse();

标签:pat   erp   rtt   ndt   series   bsp   test   调用   control   

原文地址:http://www.cnblogs.com/cuijinlong/p/6230073.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!