有没有办法将隔离范围指令中的布尔值(dataLoading)传递给另一个元素,以便在登录操作期间加载数据时显示进度条?
的index.html
<div class="progress-line" ng-show="dataLoading"></div>
<login-user email = "email" password = "password" show-nav-bar="showNavBar" recover-password="recoverPassword(email)" data-loading="dataLoading"></login-user>
login.component.js
angular
.module('login')
.directive('loginUser', [function() {
return {
scope: {
email: '=email',
password: '=password',
showNavBar: '=showNavBar',
dataLoading: '=dataLoading',
recoverPassword: '&'
},
controller: 'LoginController',
templateUrl: 'login/login.template.html',
};
}]);
login.controller.js
function recoverPassword(email) {
console.log("recoverPassword email: " + email);
$scope.dataLoading = true;
authenticationService.recoverPassword(email, function (response) {
console.log("Response success, status: " + angular.toJson(response.data.status) + " message: " + angular.toJson(response.data.message));
$scope.message = response.data.message;
$scope.dataLoading = false;
});
}
答案 0 :(得分:1)
通常,将数据向一个方向流动是一种更好的做法。
因此,dataLoading
变量的所有者应该是2个组件的共同父级。
如果该布尔值的逻辑应该在user-login
组件内,你可以传递一个回调(通过&
),然后user-login
组件会在它开始提取时调用它数据,然后父级将更改该布尔值,并将其传播给相关的子级。
const app = angular.module('app', []);
app.directive('parentComponent', function() {
return {
controllerAs: 'parentVM',
controller: function() {
this.isLoading = false;
this.onLogin = () => {
this.isLoading = true;
}
},
template: '<div><child on-login="parentVM.onLogin()"></child><other-child is-loading="parentVM.isLoading"></other-child></div>'
};
})
.directive('otherChild', function() {
return {
scope: {
localLoading: '=isLoading'
},
template: '<div ng-class="{\'is-loading\':localLoading}">{{localLoading? \'Loading...\': \'\'}}</div>'
}
})
.directive('child', function() {
return {
scope: {
onLogin: '&'
},
template: '<button ng-click="onLogin()">Login</button>'
};
})
.is-loading {
background-color: rgba(0, 200, 0, 0.2);
}
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.0/angular.min.js"></script>
<div ng-app="app">
<parent-component></parent-component>
</div>
答案 1 :(得分:0)
您可以使用EventEmitter将数据发送到控制器。
comboBox.setItems(new ArrayList<YourBean>());
在组件上添加绑定以捕获更改:
EventEmitter({loading: true })
您在组件控制器上捕获数据:
onDataChanges: '&'
您的观点:
callbackdata(data) {
this.loading= data.loading;
}
答案 2 :(得分:0)
是的,绝对的。您可以创建一个公开说“加载”属性的服务,然后将服务注入您的控制器和指令。在您的指令中设置服务的“loading”属性。这完全符合你的指示。 现在将注入到指令中的相同服务注入到元素的控制器中。因此,如果该服务被称为myloadingservice,您将执行类似$ scope.myloadingservice = myloadingservice的操作。只要你有,你就可以直接绑定到元素中服务的loading属性,如下所示:ng-show =“myloadingservice.loading”
希望这有帮助。