在我的 Angular js 控制器中,我有一个 ajax 请求,它返回一个对象:
var d= $myformdata;
$.ajax({
type: "POST",
url: url,
data: d,
success: function(message){
console.log(message);
myNavigator.pushPage('confirmation.html', {msg: message} );
$scope.msg = myNavigator.getCurrentPage().options.msg;
console.log($scope.msg);
}
});
else{ alert($err_msg); }
我得到了响应(消息),但是当我尝试推送数据以在确认页面上访问它时,它显示未定义。如果有人可以提供帮助将很高兴