1

解析 json 数据时遇到问题。下面是引发错误的函数

parseJSON: function( data ) {
    //Attempt to parse using the native JSON parser first
    if (window.JSON && window.JSON.parse) {
        return window.JSON.parse( data ); //We are getting error from this line due to data is undefined
    }
    if (data === null) {
        return data;
    }
    if ( typeof data === "string" ) {
        data = jQuery.trim( data );
    if ( data ) {
        if ( rvalidchars.test( data.replace( rvalidescape, "@" )
            .replace( rvalidtokens, "]" )
            .replace( rvalidbraces, "")) ) {
                return ( new Function( "return " + data ) )();
            }
        }
    }
    jQuery.error( "Invalid JSON: " + data );
}

提前致谢

4

1 回答 1

2

您的 JSON 数据可能有误。看

http://jsonformatter.curiousconcept.com/ 

来验证它。

于 2013-09-26T15:34:06.603 回答