Angular ui modal with controller in separate js file

后端 未结 1 1379
伪装坚强ぢ
伪装坚强ぢ 2021-01-12 21:20

I am trying to make a modal which can be instantiated from multiple places in the app. from the example given here: Angular directives for Bootstrap the modal controller is

相关标签:
1条回答
  • 2021-01-12 22:03

    Of course, you can do it. First of all you should use a function declaration.

    // modalCtrl.js
    // This file has to load before modalTestCtrl controller
    function modalCtrl ($scope) {
       $scope.hello = 'Works';
    };
    

    Then, change the modalTestCtrl like:

    app.controller('modalTestCtrl', ['$scope', '$modal', function($scope, $modal) {
    $scope.openModal = function() {
        var modalInstance = $modal.open({
            templateUrl: 'modal.html',
            controller: modalCtrl, //This must be a referance, not a string
            size: 'sm'
    
        });
    }
    }]);
    

    With the changes above, you code has to work.

    0 讨论(0)
提交回复
热议问题