我有一个后端 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]
我该如何解决这个问题?