JSON.parse()
将JSON字符串转换为对象时,jQuery使用jQuery.parseJSON()
作为跨浏览器解决方案:
parseJSON: function( data ) {
if ( !data || typeof data !== "string") {
return null;
}
// Make sure leading/trailing whitespace is removed (IE can't handle it)
data = jQuery.trim( data );
// Attempt to parse using the native JSON parser first
if ( window.JSON && window.JSON.parse ) {
return window.JSON.parse( data );
}
// Make sure the incoming data is actual JSON
// Logic borrowed from http://json.org/json2.js
if ( rvalidchars.test( data.replace( rvalidescape, "@" )
.replace( rvalidtokens, "]" )
.replace( rvalidbraces, "")) ) {
return ( new Function( "return " + data ) )();
}
jQuery.error( "Invalid JSON: " + data );
}
但为什么没有使用JSON.stringify
将对象转换为JSON的类似解决方案?例如,JSON.stringify
在IE7中不起作用,除非您包含json2.js。它是jQuerys路线图上的东西吗?
答案 0 :(得分:3)
没有类似的解决方案,因为jQuery内部不需要它。目前的立场是如果核心不需要它,它可以使用普遍接受的方法(包括json2.js或使用内置于所有现代浏览器中的方法)来实现它不会需要成为核心。