gpt4 book ai didi

angularjs - 当父作用域为 true 或独立时,无法访问子指令中父指令的作用域属性

转载 作者:行者123 更新时间:2023-12-03 05:02:14 26 4
gpt4 key购买 nike

我正在构建一个自定义登录模块指令,其中包含标签,其中包含标签,例如用户名和密码。我已在父作用域中定义了用户名和密码,并使用 Controller 功能进行通信。

    angular.module('sampleModule', [])
.directive("parent",function(){return {
restrict : 'E',
transclude: true,
scope: false,
controller: function($scope, $element, $attrs){
$scope.username = 'Init value';
$scope.setUsername = function(name){
$scope.username = name;
};
$scope.getUsername = function(){
return $scope.username;
}
},
link: function(scope, element, attrs){
element.find('button').on('click', function(event){
alert('In Parent: '+ scope.username);
});
},
template: '<div id="loginForm"><label>Parent: {{username}}</label><button>Check</button><br><br><ng-transclude></ng-transclude></div>'
}})
.directive("child",function(){return {
restrict : 'E',
require: '^parent',
scope: true, //parent scope is available only when its true or false
link: function(scope, element, attrs, parentCtrl){
scope.$watch('username', function(newVal, oldVal){
if(newVal!=oldVal){
scope.setUsername(scope.username);
}
});
},
template: '<input id="username" type="text" ng-model="username"><label>In Child: {{username}}</label>'
}});

这是我第一次使用指令,我有以下疑问:

  1. 子指令可以从父指令的隔离范围继承吗?

  2. 我希望封装模块数据(即应用程序其他地方不可用的用户名和密码信息)。因此,我正在考虑使包含用户名字段的父指令范围被隔离。但是,当我创建此父范围属性时,子范围中无法访问属性。我该如何解决这个问题?

  3. 如果我将父指令范围设置为false,其属性是否可以由容纳它的 Controller 函数访问?例如:用户名SomeController中可用吗?

    <div ng-controller="SomeController">
    <parent>
    <child></child>
    </parent>
    </div>

最佳答案

将 getUsername 函数附加到 this 而不是范围:

this.getUsername = functon(){....

然后在您的子指令中您可以通过以下方式访问它:

parentCtrl.getUsername();

要从父作用域访问子作用域,您可以执行以下操作:

var child = element.find('child');
var childScope = childElem.isolateScope();
console.log(childScope.username);

关于angularjs - 当父作用域为 true 或独立时,无法访问子指令中父指令的作用域属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36980806/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com