ajax请求不到action,spring mvc action接收不到 前台ajax请求有关问题! 待中…

当前位置:我的异常网» Java Web开发 » spring mvc action接收不到 前台ajax请求有关问题!

spring mvc action接收不到 前台ajax请求有关问题! 待中…

www.myexceptions.net  网友分享于:2013-09-10  浏览:173次

spring mvc action接收不到 前台ajax请求问题!! 在线等待中……

前台使用的js  ajax方式提交请求,如下代码

function getImgPathByCond()

{

$("#chartPanel").html('');

var dateType = $(":radio").filter(":checked").val();

var beginDate = $('#chart_start_time').attr('value');

var endDate = $('#chart_end_time').attr('value');

var url = "/ctrlmStatistics/historyGraph.do";

alert(url);    //此处能显示

$.post(   //从这里开始就没反应了

url,

{svrId:1,chartType:bar,dateType:month,beginDate:beginDate,endDate:endDate,width:880 ,height:660},

function(result){

        $("#chartPanel").html('');

        $("#chartPanel").html('');

//显示滚动条,查询条件展示块display='none'

},

"txt"

);

}

//框架为spring mvc  后台此映射截取不到$.post(……)

@RequestMapping("/ctrlmStatistics/historyGraph.do")

@ResponseBody

public String historyGraph(HttpServletRequest request,HttpServletResponse response)throws Exception {

String chartType = request.getParameter("chartType");

String dateType = request.getParameter("dateType");

String start_time=request.getParameter("beginDate");

String end_time=request.getParameter("endDate");

String svrId=request.getParameter("svrId");

if("day".equals(dateType))

{

}

else//按月查询

{

start_time=start_time.replace("-", "");

end_time=end_time.replace("-", "");

/*start_time=InitMonthDate(start_time);

end_time=InitMonthDate(end_time);*/

}

String templateId = "";//二期如果加上模版id的话,从前台获取id传入

String imgPath = statisticsChartService.getHistoryChart(templateId,

chartType, dateType, start_time, end_time, svrId, request);

return imgPath;

文章评论

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值