在AngularJS中将参数从视图传递到控制器到工厂

时间:2015-07-21 05:45:01

标签: javascript angularjs twitter-bootstrap

我使用bootstrap对AngularJS很新。 我有以下HTML:

<div ng-controller="BrandCompanyController">
    <tabset>
        <tab ng-repeat="brand in brands" heading="{{brand.Name}}" active="brand.active" disable="brand.Disabled">
            <div ng-controller="ModelController" ng-init="init(brand.ID)">

                <accordion>
                    <accordion-group heading="{{model.model_name}}" ng-repeat="model in models">
                        INSERT DATA HERE
                    </accordion-group>
                </accordion>


            </div>

        </tab>

    </tabset>
</div>

创建BRAND选项卡,但不会创建模型列表。我正在尝试使用ng-init将品牌ID传递给模型控制器。

我的ModelController看起来像:

myApp.controller('ModelController', ['$scope', 'ModelFactory',
    function ($scope, ModelFactory) {


        $scope.init = function(id)
        {
            $scope.brandId = id;
            console.log("Inside Init: " + $scope.brandId);

        }

        console.log("Outside Init: " + $scope.brandId);


        getModels($scope.brandId);

        function getModels(brandId) {

            ModelFactory.GetModels(brandId)
                .success(function (mdls) {
                    $scope.models = mdls;
                    console.log($scope.mdls);
                })
                .error(function (error) {
                    $scope.status = 'Unable to load model data: ' + error.message;
                    console.log($scope.status);
                });
        }
    }]);

和我的工厂:

myApp.factory('ModelFactory', ['$http', function ($http) {

    var ModelFactory = {};
    ModelFactory.GetModels = function (id) {

            return $http({
            method: 'GET',
            url: '/models/GetModels',
            params: { brandId: id }
        });
    };

    return ModelFactory;

}]);

ModelController中的$ scope.init设置$ scope.brandId。紧接着,在调用GetModels之前,$ scope.brandId值是未定义的。我在这里做错了什么?

2 个答案:

答案 0 :(得分:2)

加载控制器后,您的$scope.init被称为。在该函数内移动getModels($scope.brandId)调用:

$scope.init = function(id) {
    $scope.brandId = id;
    console.log("Inside Init: " + $scope.brandId);
    getModels(id);
}

这是因为首先加载并运行JS。 $scope.init已定义,console.log("Outside Init: " + $scope.brandId);被调用,getModels函数被调用 然后,HTML完成加载。大约在那个时候,ng-init="init(brand.ID)"被执行。

答案 1 :(得分:0)

在视图上使用此功能:

ng-click="functionName(model.id)"

对于控制器使用:

$scope.functionName = function(id) {
    restservice.post( '', "api/v1/.../?id=" +id).then(function(response) {
        if (response != null && response.success) {
            $scope.responseMessage = response.message;
        }
    });
}