我在aspx页面中使用了以下页面方法。 Page方法返回超过1000行。但是成功结果警报只返回“[object] [Object]”字符串。我怎样才能得到返回字符串。
function getName()
{
PageMethods.getAdCodeInfo(onSuccess(),onError());
}
function onSuccess(result)
{
alert(result);//Result Returns more than 1000 lines string
}
function onError(error)
{
alert("error "+error);
}
答案 0 :(得分:0)
function onSuccess(result)
{
if(result && result.length>0){
for(var i=0;i<result.length;i++){
alert(result[i].prop); // prop is the property what you want to alert.
}
}
}