Jquery ajax 返回json格式的数据。。
这里是js代码:$.ajax({type:"post",url:"/manager/mobileSet.do?method=replaceCss",dataType:'j...
这里是js代码:
$.ajax({
type: "post",
url : "/manager/mobileSet.do?method=replaceCss",
dataType:'json',
/**
*colorType:颜色类型
*/
data:'colorType='+color,
success: function(data){
alert(data); //这里我想接收到action里边的字符串,怎么写 ?
}
});
这里是后台action的代码:
public String replaceCss(@Read(key = "colorType") String colorType){
String siteId = ContextHolder.getContext().getSiteId();//网站ID
String cssFilePath = "";
if(colorType != null && colorType != ""){
cssFilePath = ContextHolder.getContext().getContextPath() + "../../cluster/"+siteId+"/mobile/skin/"+colorType+"/style"+colorType+"Skin.css";
}
String con = getCssContent(cssFilePath); // 这里我想把这个stirng类型的 con 返回到 js的回调函数里,怎么写写 ??
//我js里的数据格式是json类型,这里我怎么返回json类型的数据
return null;
}
这么点东西就是搞不明白啊,求大牛帮忙,谢谢谢谢谢谢谢谢。。。 展开
$.ajax({
type: "post",
url : "/manager/mobileSet.do?method=replaceCss",
dataType:'json',
/**
*colorType:颜色类型
*/
data:'colorType='+color,
success: function(data){
alert(data); //这里我想接收到action里边的字符串,怎么写 ?
}
});
这里是后台action的代码:
public String replaceCss(@Read(key = "colorType") String colorType){
String siteId = ContextHolder.getContext().getSiteId();//网站ID
String cssFilePath = "";
if(colorType != null && colorType != ""){
cssFilePath = ContextHolder.getContext().getContextPath() + "../../cluster/"+siteId+"/mobile/skin/"+colorType+"/style"+colorType+"Skin.css";
}
String con = getCssContent(cssFilePath); // 这里我想把这个stirng类型的 con 返回到 js的回调函数里,怎么写写 ??
//我js里的数据格式是json类型,这里我怎么返回json类型的数据
return null;
}
这么点东西就是搞不明白啊,求大牛帮忙,谢谢谢谢谢谢谢谢。。。 展开
展开全部
$.ajax({
type: "post",
url : "/manager/mobileSet.do?method=replaceCss",
dataType:'json',
/**
*colorType:颜色类型
*/
data:'colorType='+color,
success: function(result){
alert(result); //这里我想接收到action里边的字符串,怎么写 ?
}
});
后台java代码:
String result = “xxxxxxxxxxxxxxx”;
PrintWriter out = this.servletResponse.getWriter();
out.write(result);
type: "post",
url : "/manager/mobileSet.do?method=replaceCss",
dataType:'json',
/**
*colorType:颜色类型
*/
data:'colorType='+color,
success: function(result){
alert(result); //这里我想接收到action里边的字符串,怎么写 ?
}
});
后台java代码:
String result = “xxxxxxxxxxxxxxx”;
PrintWriter out = this.servletResponse.getWriter();
out.write(result);
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
echo json_encode($string);
$string 为你拼装的字符串
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
直接输出 con 呀
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询