ajax成功后台返回数据问题

$.ajax({
 		type: "post",
 		url: "/ssmdemo/shopInf/insert",
 		data: {data:value},
 		async: true,
 		 success:function(msg) {  	//后台返回数据为String类型的"success"	
                 alert(msg);
          if(msg=="success"){
 	alert("添加成功");
              else{alert("添加失败");
}
          },
          error:function(msg){
        	  layer.msg("请求失败",{time:2000});
          }
 		});

结果却跳到添加失败上。

解决办法:success:function(msg)下面添加:

msg = eval('(' + msg + ')');

原因:参考https://zhidao.baidu.com/question/1755929711689863348.html



你可能感兴趣的:(ajax成功后台返回数据问题)