当前位置: 首页 > 面试题库 >

为什么在使用ion-scroll时需要$ parent才能在ng-click中启用该功能?

阎星华
2023-03-14
问题内容

我正在使用以下版本:

  1. 离子v1.0.0-beta.14
  2. AngularJS v1.3.6

路由配置:

myApp.config(function ($stateProvider) {
    $stateProvider
        .state('manager_add', {
            url: '/managers/add',
            templateUrl: 'app/components/mdl.role_members/views/add.html',
            controller: 'ManagerAddController'
        });
});

控制器配置:

myApp.controller('ManagerAddController', function ($scope, $state, $ionicLoading, $filter, ContactService, ManagersService, RoleRequest, RoleRequestsSentService, ToastrService) {

    $scope.role_request = RoleRequest.new();
    $scope.showContactSearch = false;

    $scope.managers = ManagersService.collection();
    $scope.$watchCollection("managers", function( newManagers, oldManagers ) {
        if(newManagers === oldManagers){ return; }
        $scope.managers = newManagers;
        $scope.contactsToBeInvited = getNotInvitedContacts();
    });

    $scope.contacts = ContactService.collection();
    $scope.$watchCollection("contacts", function( newContacts, oldContacts ) {
        if(newContacts === oldContacts){ return; }
        $scope.contacts = newContacts;
        $scope.contactsToBeInvited = getNotInvitedContacts();
    });

    $scope.contactsToBeInvited = getNotInvitedContacts();
    function getNotInvitedContacts() {
        var notinvited = [];
        angular.forEach($scope.contacts, function(contact) {
            if(angular.isObject($scope.managers)) {
                var results = $filter('filter')($scope.managers, {member_id: Number(contact.contact_id)}, true);
                if (results.length == 0) {
                    this.push(contact);
                }
            } else {
                this.push(contact);
            }
        }, notinvited);

        return notinvited;
    }

    $scope.search_contact = "";
    $scope.search = function(contact) {
        if($scope.search_contact === "" || $scope.search_contact.length === 0) {
            return true;
        }

        $scope.showContactSearch = true;
        var found = false;
        if(contact.display_name) {
            found = (contact.display_name.toLowerCase().indexOf($scope.search_contact.toLowerCase()) > -1);
            if(found) { return found; }
        }
        if(contact.contact.getFullName()) {
            found = (contact.contact.getFullName().toLowerCase().indexOf($scope.search_contact.toLowerCase()) > -1);
            if(found) { return found; }
        }
        if(contact.contact.email) {
            found = (contact.contact.email.toLowerCase().indexOf($scope.search_contact.toLowerCase()) > -1);
            if(found) { return found; }
        }

        return found;
    }

    $scope.selectContact = function(contact) {
        $scope.search_contact = contact.contact.getFullName();

        // TODO: Make dynamic role
        $scope.role_request.role_id = 4;
        $scope.role_request.email = contact.contact.email;
    };

    $scope.addRoleMember = function(valid) {
        if($scope.role_request.email === "") { return; }
        if(!valid) { return; }

        $ionicLoading.show({
            template: 'Please wait...'
        });

        RoleRequestsSentService.add($scope.role_request).then(function(roleJsonResponse){
            ToastrService.toastrSuccess('Request send', 'We have send an invite to '+ $scope.search_contact +'.');
            $ionicLoading.hide();
            $state.go('managers');
        });
    }
});

查看配置:

<ion-view view-title="ManagerAdd" >

    <ion-content class="has-header scroll="true">
        <div class="content">

            <div class="list">
                <div class="item item-border">
                    <p>Some text</p>
                </div>
            </div>


            <form name="managerForm">
                <div class="list">

                    <div class="item item-divider">
                        Some text
                    </div>

                    <div class="item item-border">
                        <form name="fillForm">
                            <div class="form-group">
                                <label class="item item-input item-stacked-label item-textarea">
                                    <span class="input-label border-none">Personal message: <span class="text-red required">*</span></span>
                                    <textarea name="message" ng-model="role_member.message" required></textarea>
                                </label>
                                <p ng-show="managerForm.message.$dirty && managerForm.message.$error.required"
                                   class="error-message">Message required!</p>
                            </div>

                            <div class="form-group">
                                <label class="item item-input">
                                    <span class="input-label">Search on name <span class="text-red required">*</span></span>
                                    <input type="text" name="search_contact" ng-model="$parent.search_contact">
                                </label>

                                <div class="searchResultBox" ng-show="showContactSearch">
                                    <ion-scroll direction="y" class="scrollArea">
                                        <div class="list">

                                            <a class="item item-border item-avatar pointer" ng-repeat="contact in $parent.filteredContacts = (contactsToBeInvited | filter:search:false)" ng-click="$parent.selectContact(contact)">
                                                <img src="{{ contact.getImage('thumbnail') }}">
                                                <h2>{{contact.getIconName()}}</h2>
                                                <p>City: {{contact.contact.city}}</p>
                                            </a>

                                        </div>
                                    </ion-scroll>

                                    <div class="notFound pointer" ng-hide="filteredContacts.length">
                                        <h3>Nobody found</h3>
                                        <p>You can only search through existing contacts</p>
                                    </div>

                                </div>
                            </div>

                        </form>
                    </div>
                </div>


                <div class="form-actions">
                    <button type="submit" class="button button-block regie-button" ng-click="addRoleMember(registerForm.$valid)">
                        Sent request
                    </button>
                </div>
            </form>

            <p class="text-red" style="text-align:center; font-size:14px; font-weight: 400;">* required</p>

        </div>
    </ion-content>

</ion-view>

如您在视图中看到的,我需要使用$parent以下字段才能使其工作:

  • ng-model="$parent.search_contact"
  • ng-repeat="contact in $parent.filteredContacts = (contactsToBeInvited | filter:search:false)"
  • ng-click="$parent.selectContact(contact)"

我真的不明白为什么这样做是必要的,因为完整的视图使用的是同一控制器。有人有主意吗?


问题答案:

问题是继承。在控制器的作用域和这些字段之间,有几个新的作用域(离子含量,离子滚动以及其他可能)。

因此,例如ng-model="search_content"。当您在其中写入内容时,它将search_contention- content作用域(如果没有看到任何中间作用域,则在中间作用域内)中创建一个变量。由于search_content是在内部创建的ion- content,因此您的控制器将看不到它。

如果这样做$parent.search_content,它将在父内容(也就是控制器的作用域)中创建它。

您不应该这样做,$parent今天的目标是明天,它可以指向其他任何目标(因为您可以在不知道的情况下在两者之间添加新范围,因此$
parent将指向ion-content

因此,除了这样做,您还需要使用对象而不使用原语,例如:

ng-model="form.search_contact"

多亏了这一点,它将form在原型链中寻找对象,直到它在控制器的作用域中找到并使用它(正是您所需要的)。

阅读这比我的解释要好一百倍。



 类似资料:
  • 问题内容: 我认为这个问题已经存在,但是我找不到。 我不明白,为什么必须要有一个功能接口才能使用lambda。考虑以下示例: 这可以正常工作,但是如果您取消注释行,则不会。为什么?以我的理解,编译器应该能够区分这两种方法,因为它们具有不同的输入参数。为什么我需要一个功能接口并炸毁我的代码? 编辑:链接的重复项没有回答我的问题,因为我在询问不同的方法参数。但是在这里,我得到了一些非常有用的答案,这要

  • 问题内容: Angular应用使用属性而不是事件。 为什么是这样? 问题答案: ng-click包含一个角度表达式。Angular表达式是在Angular 范围的上下文中求值的,该范围绑定到具有ng- click属性的元素或该元素的祖先。 Angular表达式语言不包含流控制语句,也不能声明变量或定义函数。这些限制意味着模板只能访问由控制器或指令提供的变量和运行功能。

  • 我在div上使用了,它可以正常工作,但是当我在其他输入上使用时,div上的停止工作。 工作代码[单击时调用附加项(项目)] 破损的代码[addItem(项目)未被调用] 相关JS代码 这里是http://plnkr.co/edit/eI5dvczO2E1Cp1SBPgQx?p=preview点击输入将带来下拉。在一种情况下,单击下拉菜单会将项目添加到选定列表中,但在其他情况下不会。 我已经试过调试

  • 当我阅读mapstruct文档时,他们说:mapstruct是一个Java注释处理器,用于生成类型安全的bean映射类。 https://mapstruct.org/documentation/stable/reference/html/#introduction 这就剩下我的任务了。为什么我需要mapstruct?Jhipster使用它,我不知道他们为什么首先需要它?为什么你需要Jhipster

  • 我试图让VSCode启动并使用TypeScript运行,但收效甚微。 我正在看以下内容: https://code.visualstudio.com/docs/languages/typescript 看起来,一旦安装了编译器VSCode,就应该可以正常工作,但考虑到以下情况: tsconfig.json 包裹json tasks.json 项目 你好世界ts 从终端运行构建任务或tsc会正确指示

  • 我正在用一个需要JPA(classes)的项目测试Java9。当我添加<code>模块信息时。java并声明我的模块,包变得不可用。 我搜索了很多,但找不到在Java9模块项目中使用JPA所需的模块。 更新 正如艾伦建议的那样,我跑了 但还是有了这个 我得到“module-info.java:[3,18] module not found: java.persistence”。 更新2这是我的项目