比如我有两个变量,我要将a转换成字符串,将b转换成JSON对象:
在Firefox,chrome,opera,safari,ie9,ie8等高级浏览器直接可以用JSON对象的stringify()和parse()方法。
JSON.stringify(obj)将JSON转为字符串。
JSON.parse(string)将字符串转为JSON格式;
上面的转换可以这么写:
ie8(兼容模式),ie7和ie6没有JSON对象,不过http://www.json.org/提供了一个json.js,这样ie8(兼容模式),ie7和ie6就可以支持JSON对象以及其stringify()和parse()方法;你可以在https://github.com/douglascrockford/JSON-js上获取到这个js,一般现在用json2.js。
ie8(兼容模式),ie7和ie6可以使用eval()将字符串转为JSON对象,
jQuery中也有将字符串转为JSON格式的方法jQuery.parseJSON( json ),接受一个标准格式的 JSON 字符串,并返回解析后的 JavaScript (JSON)对象。当然如果有兴趣可以自己封装一个jQuery扩展,jQuery.stringifyJSON(obj)将JSON转为字符串。
eg:
前端:
if(selectedItems.length > 0){
avalon.eachselectedItems, function(index,p) {
productIds.push({productEfclId:p.productEfclId,freightEfclId:p.freightEfclId});
});
}
avalon.ajax({
url:"/freight-quote-rest/rest/efclDzg/product/updateAll",
type:"post",
data:{
"inputNum":pmodel.shippingSpaceSet,
"freightStatus":freightStatus,
"productIds":JSON.stringify(productIds),
"orgOpenId": orgOpenId
},
dataType : "json",
success:function(data){
if(data != null){
if(data == true){
messageUpdateOptsVm.toggle = false;
vm.successMessage = "设置成功!";
successSetOptsVm.toggle = true;
}else{
messageUpdateOptsVm.toggle = false;
vm.successMessage = "设置失败!";
successSetOptsVm.toggle = true;
}
}
}
});
后台:
@RequestMapping(value = "/product/updateAll", method = RequestMethod.POST)
@ResponseBody
@SuppressWarnings("all")
public boolean updateAllShippingSpace(
@RequestParam(value = "inputNum")int inputNum,
@RequestParam(value = "freightStatus")int freightStatus,
@RequestParam(value = "productIds")String productIds){
try {
//获得service对象
IFreightEfclShippingSpaceService service = efclPHPRPCClient.getPHPRPCService(IFreightEfclShippingSpaceService.class);
List<MPFreightEFclProduct> list = jsonToList(productIds);//将数组转化成List对象
Long orgId = IdentityHelper.getOrgId();
if(service.updateAllShippingSpace(inputNum,freightStatus,orgId,list)>0){
return true;
}
} catch (Exception e) {
LOGGER.error("批量设置舱位SQL语句执行出错", e);
}
return false;
}