2

私はAngularJSの完全な初心者です。ここで、ui.bootstrap $uibModal サービスを使用してダイアログのチェーンを作成したいと考えています。.txt ファイルからダイアログにデータを受け取りたい。つまり、最初はチェーン内のダイアログの数がわからず、.txt データに依存します。今のところ、ループでそれをやろうとしましたが、それはばかげていて、「前」、「次」、OK、キャンセルなどの機能を持つことができません。それを行うための賢明な解決策はありますか?回答ありがとうございます。

var app = angular.module('myApp', ['ui.bootstrap']);

angular.module('myApp').config(['$uibModalProvider', function($uibModalProvider) {
  $uibModalProvider.options.windowClass = 'show';
  $uibModalProvider.options.backdropClass = 'show';
}]);



app.factory('modalDialog', function($uibModal) {
    var arr_items = [];

    var showModalDialog =function(items) {
      return $uibModal.open({
         templateUrl:  'test.html', //just the dialog body for the info
         animation: true,
          size: 'sm',
          ariaLabelledBy: 'modal-title',
          ariaDescribedBy: 'modal-body',
          controller: 'dialogCtrl',
          controllerAs: "$ctrl",
          resolve: { items: function () { console.log("items before travelling" + JSON.stringify(items));
          return items; } }
        });
      
    }

     return {showModalDialog: showModalDialog};


});


app.controller('TestCtrl', function($scope, $http, modalDialog){
  $scope.cancelled = false;
  $scope.test = function(){
    $http.get('test.txt')
        .then(function(response) {
           $scope.items=response.data;
           for (var i=0; i<$scope.items.length; i++) {
            console.log($scope.cancelled); 
            if ($scope.cancelled) return ;
           var showModalDialog = function() {
              console.log("here");
              modalDialog.items = $scope.items[i];
              modalDialog.showModalDialog($scope.items[i]);
            };
            showModalDialog();
          };
        });
  };
});


app.controller('dialogCtrl', function ($scope, $uibModalInstance, items) {
  var $ctrl =this;
  console.log("here are my items" + items.request + " " + JSON.stringify(items));

  $scope.items = items;

  $ctrl.ok = function () {
    $uibModalInstance.close($scope.items);
  };

    $ctrl.cancel = function () {
      console.log("cancel");
      $scope.cancelled = true;
      return $uibModalInstance .dismiss('cancel');
  };
});
<!doctype html>
<html ng-app="myApp">
  <head>
  	<meta charset="utf-8">
    <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.9/angular.js"></script>
    <script src="ui-bootstrap-tpls-2.5.0.js"></script>
    <link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet">
  </head>
  <body>
<div ng-controller="TestCtrl">
    <button class="btn btn-primary" ng-click="test()">Test</button>
</div>

	<script type="text/ng-template" id="test.html">
		<div><div class="modal-header">
  <h1 class="modal-title">Test Modal</h1>
</div>
<div class="modal-body">
  Test Data:
<div>{{items}}</div>
</div>
<div class="modal-footer">
    <button class="btn btn-primary" type="button" ng-click="$ctrl.ok()">OK</button>
    <button class="btn btn-primary" type="button" ng-click="$ctrl.cancel()">Cancel</button>
</div>
</div>

	</script>



    <script src="script.js"></script>


  </body>
</html>

ここに私のtest.txtファイルがあります:

[{
        "request": "new user",
        "dialogs": [
            ["input", "checkbox"],
            ["input", "radiobutton"],
            ["input", "input"]
        ]
    },
    {
        "request": "new project",
        "dialogs": [
            ["input", "input"],
            ["radiobutton", "radiobutton"],
            ["input", "input"]
        ]
    },
    {
        "request": "delete project",
        "dialogs": [
            ["checkbox", "checkbox"],
            ["input", "radiobutton"],
            ["input", "input"]
        ]
    }
]
4

1 に答える 1