如何在ngDialog中加载数据

时间:2014-09-08 12:30:59

标签: javascript ajax angularjs jsp dialog

我有一个要求,我需要从jsp页面打开一个对话框,在打开对话框时,我需要从服务器加载一些预先填充的数据(使用AJAX调用)。如果我在打开对话框之前进行AJAX调用,我会得到数据,但对话框会像新页面一样加载。如果我尝试在新控制器中获取数据,则对话框仍然不会反映数据。我应该使用什么来确保对话框反映了我从服务器获取的数据

<div class="container-fluid" ng-controller="EditUserController">

    <div class="text-center container-fluid">
        <label class="sub-header">Edit User: {{userEmail}}</label>
    </div>

    <form action="editUser" method="post" name="editForm">
        <div>
            <div class="pull-right">
                <label>Delete User</label><br> <a href="#"
                    class="btn btn-block btn-sm btn-danger" ng-click="deleteUser(userEmail)">{{userEmail}}</a>
            </div>
            <div>
                <label>Change Role</label>
            </div>
            <div>
                <label>
                <input type="checkbox" ng-model="superVisor" name="superVisorFlag" 
                ng-true-value="1" ng-false-value="0" value="${existingUser.superVisorFlag}">
                Make a Supervisor</label>
            </div>
            <div>
                <input type="text" class="form-control" ng-model="email"
                    name="emailAddress" ng-disabled = "true"
                    ng-options="email for email in userEmail"
                    value="${existingUser.emailAddress}"
                    placeholder="Enter New User Email Address" bs-typeahead>
            </div>
            <div>
                <input type="text" class="form-control" ng-model="firstName"
                    name="firstName" value="${existingUser.firstName}"
                    placeholder="Enter First Name" bs-typeahead>
            </div>
            <div>
                <input type="text" class="form-control" ng-model="lastName"
                    name="lastName" value="${existingUser.lastName}"
                    placeholder="Enter Last Name" bs-typeahead>
            </div>


            <div>
                <a href="#" class="btn btn-sm btn-primary" ng-click="saveChanges()">Save Changes</a>
            </div>
        </div>
    </form>

</div>

<script type="text/javascript"
    src="<c:url value="/resources/scripts/admin.js"/>"></script>

以上是对话框的jsp。下面是我的js文件 -

var app = angular.module('scc-admin', [ 'ngDialog', 'mgcrea.ngStrap' ]);
app.factory("UserList", function() {
    var UserList = {};
    UserList.data = [ {
        userId : 111,
        userFirstName : "xxx",
        userLastName : "yyy",
        userEmail : "xxx.yyy@zzz.com",
        userRole : "Admin"
    }, {
        userId : 222,
        userFirstName : "second",
        userLastName : "last",
        userEmail : "second.last@zzz.com",
        userRole : "Manager"
    }];
    return UserList;
});
app.controller('UserSettingsController', function($scope, ngDialog, UserList,$http) {
    // variable for the bashboard list
    $scope.userList = UserList;
    $scope.editUser = function(userEmail) {             
        $scope.userEmail = userEmail;       
        ngDialog.open({
            template : 'editUser' ,
            className : 'ngdialog-theme-default',
            controller : 'EditUserController',
            closeByEscape : true,
            scope : $scope
        });
    };

    $scope.addUser = function() {
        ngDialog.open({
            template : 'addUser',
            className : 'ngdialog-theme-default',
            controller : 'AddUserController',
            closeByEscape : true,
            scope : $scope
        });
    };

});

app.controller('EditUserController', function($scope, ngDialog, $http) {

    ngDialog.template = $scope.output;
    ngDialog.$modelValue = $scope.output;

    var responsePromise = $http.get("initUser?email=" + $scope.userEmail);
        responsePromise.success(function(data, status, headers, config) {
                $scope.output = data;
                console.log(data);                
        });
    console.log($scope);

    $scope.deleteUser = function(){

        $scope.cfdump = "";

        var str = {emailAddress : $scope.userForm.emailAddress.$modelValue};
        str = JSON.stringify(str);

        var request = $http({
            method: 'post',
            url: "deleteUser?formData=" + str,
            data: ({formData:str})
        });

        request.success(function(html){
            alert("success");
        });

        request.error(function(errmsg){
            alert("Unable to delete user");     
        });     

    }

});

我在usersettings控制器中打开一个对话框,并尝试使用默认数据加载它。我尝试将新对话框的模板设置为AJAX调用的输出,但它不起作用。我在这里缺少什么?

2 个答案:

答案 0 :(得分:19)

在咨询documentation后,我学会了以下解决方案。它应该对你有用,就像它对我一样。

要在ngDialog内为ng-model传递数据(JSON对象),您可以将ngDialog声明为以下内容。

ngDialog.open({
    template: 'my-template.html',
    className: 'ngdialog-theme-plain',
    data: $scope.myJSONObject
});

现在,完成上述部分后,您需要绑定弹出式ngDialog中的数据,因此请将ngDialogData.myJSONObjectFieldName放入ng-model

请考虑以下示例进行进一步阐述。我们假设我们有以下myJSONObject

myJSONObject={
   first_name: 'John',
   last_name: 'Doe'
};

要在ngDialog的first_name中使用ng-model,只需输入ng-model="ngDialogData.first_name"

答案 1 :(得分:0)

要检查模态对话框中是否收到控制器(VM)数据,请使用此

 <pre>{{vm|json}}</pre>

模块和控制器:

var app = angular.module("DemoApp",['ngDialog']);
    app.controller("DemoController",["$rootScope","ngDialog","productService",function($rootScope,ngDialog,productService){
        var vm=this;
         $rootScope.ngDialog = ngDialog; // to close Dialog using "ngDialog.close();" in ProductDialog.html

 /* vm.products=[{brand:"Apple", price:60000, os:"iOS"},
             {brand:"Samsung", price:35000, os:"Android"},
             {brand:"Microsoft Lumia", price:30000, os:"Windows 10"}
            ];  
 */

vm.getProductDetails=function() {
            productService.getData().then(function (response) {
                if (response.data) {
                    vm.products=response.data;
                    vm.ProdDialog();
                }
            });
    };

vm.productPopup = function(x){
    ngDialog.open({
        template: 'ProductDialog.html',
        className:'ProductDetailsDialog'
        scope:$scope,
        data:x,
        closeByDocument:true
    });
}
      vm.getProductDetails();
}]);

<强>服务

app.factory("productService",["$http",function($http){
    return {
        getData: function() {
            return $http.get("http://xxxxxxx/xxx/xxxxx");
        }
     };
}]);

<强> DemoController.html

   /* <table>
        <tr>
            <th>Brand</th>
            <th>Price</th>
            <th>OPerating System</th>
            <th>Open ngDialog</th>
        </tr>
        <tr  ng-repeat="x in vm.products">
            <td ng-bind="x.brand"></td>
            <td ng-bind="x.price| currency:"&#8377;":2"></td>
            <td ng-bind="x.os"></td>
            <td><button ng-click="vm.productPopup(x)"></button></td>

        </tr>
    </table>
*/

<强> ProductDialog.html:

<div class="ProductDetailsDialog">
    <div class="ngdialog-content" role="document">
        <div class="modal-header">
            <button type="button" class="close" ng-click="ngDialog.close();">&times;</button>
            <h4 class="modal-title">Product Detials</h4>
        </div>
               //  <pre>{{vm|json}}</pre> //
        <div class="modal-body">
            <h4>Brand:<span ng-bind="ngDialogData.brand"></span></h4>
            <h4>Price:<span ng-bind="ngDialogData.price | currency:"&#8377;":2"></span></h4>
            <p>Operating System:<span ng-bind="ngDialogData.os"></span></p>
        </div>
        <div class="modal-footer">
            <button type="button" class="btn btn-default">OK</button>
        </div>
    </div>
</div>