window.open()在AngularJS中返回null

时间:2017-05-22 10:08:11

标签: angularjs

它在一个简单的调用中工作,但在$ 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
});

0 个答案:

没有答案