如何在Json文件中检索大文本?

时间:2014-02-04 19:54:18

标签: javascript jquery json sql-server-2005 asp-classic

我在表SQL服务器中有一个文本字段。我需要像属性一样检索此字段。我正在使用ASP生成这个JSON文件。

类似......

[{"name":"name of object","observation":"   

 Text text text text text
 text text text text

 text text text text

 text text text text

 text"}]

我已经在ASP中尝试了一些替换函数作为javascript,但它不起作用。 有什么想法吗?

通过以下方式获取JSON文件:

//call json 
    var json = (function () {
        var json = null;
        $.ajax({
            async: false,
            global: false,
            url: 'functions.asp?' + params,
            dataType: 'json',
            success: function (data) {
                json = data;
            }

        });
        return json;
    })(); 

    var tam = json.length;

在最后一行我得到了'json is null'。

更新:

问题是在文本中检索到的回车键。

0 个答案:

没有答案