0

我有一个后端 CGI 脚本,如果通过 AJAX 调用出现问题,它会在文本下方返回我:

<p>A problem occurred in a Python script.
<p> /bin/cgi-bin/LOGS/tmpslM4pu.txt contains the description of this error.

我试图显示如下:

$.ajax({
            type: "POST",
            url:  "runcgi.py",
            data:
            {
               'my_data' : 'test'
            },
            success: function(html)
            {
              if(..test for success..)
              {
              }
              else
              {
                            var StrippedString = $(html).toString().replace(/(<([^>]+)>)/ig,"");                                                                                           var StrippedString = $(html).toString().replace(/(<([^>]+)>)/ig,"");
                            $("p").html(StrippedString);

              }
});

下面是我的 HTML 代码:

<body>
        <p></p>
</body>

但我在浏览器中看到以下输出:

[object Object]

我该如何解决这个问题?

4

1 回答 1

3

您正在获取由 形成的 jQuery 对象html并将其转换为字符串。结果是[object OBJECTTYPE],在这种情况下是[object Object]

相反,只需尝试var StrippedString = html.replace(...);.

于 2012-06-01T12:38:26.880 回答