-2
$http({
method: "get",
url: "/Home/GetCallInfo"
}).then(function (response) {
}, function() {
alert("error");
})
public string GetCallInfo (Object result1,Object result2)
{
// Here i want to return like
return js.Serialize(result1) + "^" + js.Serialize(result2)
}
アラートエラーを表示します。 どうすればよいですか?私は新しい角度です。 Plz reply2つのjsonオブジェクトを連結してjsonオブジェクトとして返し、応答として返信する
ありがとうございました。 – santosh