从http调用获得成功响应后,我将调用$ scope。$ apply并更新一些范围参数,但它不会更新视图。
$http({
method: 'GET',
url: url
}).then(response => {
if(response.data) {
$scope.$apply(() => {
$scope.showText = true;
});
}
如果showText为true,我将在html中显示一些文本,但在成功调用后不会更新