ColdFusion 9 JSON解析错误?

时间:2017-10-26 16:07:48

标签: jquery json coldfusion coldfusion-9

我的代码版本在ColdFusion 10中工作正常但ColdFusion 9我收到此错误:

SyntaxError: JSON.parse: expected ',' or '}' after property value in object at line 1 column 13714 of the JSON data

这是我的数据转换为JSON的函数:

      <cffunction name="getBuildings" access="remote" output="true" returnformat="JSON">
                <cfset fnResults = structNew()>

                <cfquery name="getBldg" datasource="myData">
                    SELECT
                        LTRIM(RTRIM(number)) AS bldgNum, 
                        LTRIM(RTRIM(name)) AS bldgName
                    FROM Bldg WITH (NOLOCK)
                    ORDER BY name
                </cfquery>

                <cfset fnResults.recordcount = getBldg.recordcount>

                <cfif getBldg.recordcount EQ 0>
                    <cfset fnResults.message = "No Buildings found.">
                <cfelse>
                    <cfloop query="getBldg">
                        <cfset fnRecBldg[currentRow] = StructNew()>
                        <cfset fnRecBldg[currentRow].bldgName = URLEncodedFormat(getBldg.name)>
                        <cfset fnRecBldg[currentRow].bldgNumber = getBldg.number>
                    </cfloop>
                    <cfset fnResults.data = fnRecBldg>
                </cfif>

                <cfset fnResults.status = "200">
          <cfreturn fnResults>
     </cffunction>

这是我的JQUERY:

function getBldg(){
    var dist = $('.chBldg');

        $.ajax({
            type: 'POST',
            url: 'Application.cfc?method=getBuildings',
            data: {},
            dataType: 'json'
        }).done(function(obj){
            var numRecs = obj.RECORDCOUNT;

            if(obj.STATUS == 200){
                if(numRecs == 0){
                    dist.find("option:gt(0)").remove();
                }else{
                    dist.find("option:gt(0)").remove();

                    for(var i=0; i < numRecs; i++){
                        var jsRec = obj.DATA[i];
                        dist.append($("<option />").val(jsRec.BLDGNUMBER).text(decodeURIComponent(jsRec.BLDGNAME) +' ('+ jsRec.BLDGNUMBER +')'));
                    }
                }
            }else{
            }
        }).fail(function(jqXHR, textStatus, errorThrown){
            alert(errorThrown);
        });
    }
}

以下是重新投放数据的小例子:

{"RECORDCOUNT":4,"STATUS":200,"DATA":[
    {"BLDGNAME":"Fall%2DCasey","BLDGNUMBER":"0012"},
    {"BLDGNAME":"Autmun","BLDGNUMBER":"0022"},
    {"BLDGNAME":"Cedar","BLDGNUMBER":0201},
    {"BLDGNAME":"Great%20Lake","BLDGNUMBER":1215}]}

此错误必须与ColdFusion版本9/10以及我的JSON数据的组织方式相关。我仍然没有找到错误。如果有人知道我的代码身份在哪里,请告诉我。

1 个答案:

答案 0 :(得分:2)

我认为您的代码没有任何问题,ColdFusion中的serializeJSON存在很多错误。

迫使CF9将所有数字值视为字符串的一个技巧/黑客是将非数字文本附加到值并在使用客户端之前将其删除。我过去使用过ASCII控制字符2,#34;文本开头&#34;我喜欢在其他文本中使用控制字符,因此我觉得我的用户不会故意使用它。

要将控制字符附加到您的建筑物编号,只需在chr(2) &之前添加getBldg.number即可。在客户端,您可以指示jQuery使用dataFilter属性从JSON字符串中删除控制字符。

$.ajax({
    type: 'POST',
    url: 'Application.cfc?method=getBuildings',
    data: {},
    dataType: 'json',
    dataFilter: function(data, type){
        //Remove all start of text characters
        return data.replace(/\u0002/g,"");
    }
})