它在一个简单的调用中工作,但在$ http内返回null。如果需要$ http?
的结果,如何创建窗口window.open('','','left=0,top=0,width=300,height=200,toolbar=0,scrollbars=1,status=0'); // OK
$http({
...
}).then(function(response) {
console.log(response.data.MyData); // correct
var WinPrint = window.open('','','left=0,top=0,width=300,height=200,toolbar=0,scrollbars=1,status=0'); // null
});