如何让ng-init在控制器中使用多个函数?

问题描述 投票:0回答:1

我的HTML:

<div ng-app="APSApp" class="container">
    <br />
    <br />
    <input type="text" placeholder="Search Terms" />
    <br />
    <div ng-controller="APSCtl" >
        <table class="table">
            <tr ng-repeat="r in searchTerms" ng-init="searchTerms=getSearchTerms()" >
                <td>{{r.DisplayText}} <input type="text" ng-model="r.SearchInput"></td>
            </tr>
        </table>
    </div>
</div>
<script type="text/javascript">

    const moduleId = '@Dnn.ModuleContext.ModuleId';
    const tabId = '@Dnn.ModuleContext.TabId';
</script>
<script src="/DesktopModules/RazorCart/Core/Content/Scripts/angular.min.js"></script>

<script src="/DesktopModules/MVC/AdvancedProductSearchMVC/Scripts/AdvancedProductSearch.js"></script>

我的角度设置:

var aps = angular.module("APSApp", []);
aps.config(function($httpProvider) {
    $httpProvider.defaults.transformRequest = function(data) {
        return data !== undefined ? $.param(data) : null;
    };
});

aps.factory('SearchTerms', 
    function($http) {
        return {
            getSearchTerms: function(onSuccess, onFailure) {
                const rvtoken = $("input[name='__RequestVerificationToken']").val();
                $http({
                    method: "post",
                    url: "/DesktopModules/MVC/AdvancedProductSearchMVC/AdvancedProductSearch/GetAPS",
                    headers: {
                        "ModuleId": moduleId,
                        "TabId": tabId,
                        "RequestVerificationToken": rvtoken
                    }
                }).success(onSuccess).error(onFailure);
            }
        };
    });


aps.controller('APSCtl',
    function(SearchTerms, $scope) {
        function getSearchTerms() {
            $scope.searchTerms = [];
            successFunction = function(data) {
                $scope.searchTerms = data;
                console.log($scope.searchTerms);
            };

            failureFunction = function(data) {
                console.log('Error' + data);
            };
            SearchTerms.getSearchTerms(successFunction, failureFunction);
        }

        function doSomethingElse($scope) {}

    });

我正在尝试创建一个具有多个功能的单个控制器。如果我的角度控制器看起来像这样(并且我不使用ng-init),这是有效的:

aps.controller('APSCtl',
    function(SearchTerms, $scope) {
            $scope.searchTerms = [];
            successFunction = function(data) {
                $scope.searchTerms = data;
                console.log($scope.searchTerms);
            };

            failureFunction = function(data) {
                console.log('Error' + data);
            };
            SearchTerms.getSearchTerms(successFunction, failureFunction);
    });

我只是想在一个控制器中保留相关的功能。我究竟做错了什么?我是否真的必须为每个功能设置不同的控制器?

angularjs function controller
1个回答
1
投票

您不必在模板中分配值,只需调用该函数即可,

 <table class="table" ng-init="getSearchTerms()>
            <tr ng-repeat="r in searchTerms" >
                <td>{{r.DisplayText}} <input type="text" ng-model="r.SearchInput"></td>
            </tr>
 </table>

你应该在你的控制器中有一个名为getSearchTerms()的函数来调用它,

aps.controller('APSCtl',
    function(SearchTerms, $scope) {
         $scope.getSearchTerms() {
            $scope.searchTerms = [];
            successFunction = function(data) {
                $scope.searchTerms = data;
                console.log($scope.searchTerms);
            };

            failureFunction = function(data) {
                console.log('Error' + data);
            };

            SearchTerms.getSearchTerms(successFunction, failureFunction);
        }

        function doSomethingElse($scope) {}

    });
© www.soinside.com 2019 - 2024. All rights reserved.