3

でプロジェクトを作成しました$ionicPopup。コード$ionicPopup.factory. 私$ionicPopup.show()はユーザーに値を入力するように求めます。ユーザーがすでに値を入力した後、ユーザーが書き込んだ値を警告します。

次の投稿も確認しましたが、問題の Access scope inside an angular js factory を解決できません。

だからここに私のコードがあります:

コントローラ

.controller('PopupCtrl',function($scope, $ionicPopup, $timeout, popupService) {

 // Triggered on a button click, or some other target
 $scope.showPopup = function() {

   var showParameter = {
     title: "Test",
     cssClass: "",
     subTitle: "Insert any value",
     template: '<input type="text" ng-model="value">',
     templateUrl: "",
     buttons: {
       cancelText: "Reject",
       cancelType: "button-assertive",
       okText: "Accept",
       okType: "button-positive"
     }
   }

   // An elaborate, custom popup
   popupService.show(showParameter, $scope).then(function(res) {
     console.log('Tapped!', res);
     alert("value: " + res);
   });
  };
})

工場

.factory('popupService', function ($ionicPopup) {
    return{
        show: function(param, scope){
          var show = $ionicPopup.show({
              title: param.title, // String. The title of the popup.
              cssClass: param.cssClass, // String, The custom CSS class name
              subTitle: param.subTitle, // String (optional). The sub-title of the popup.
              template: param.template, // String (optional). The html template to place in the popup body.
              templateUrl: param.templateUrl, // String (optional). The URL of an html template to place in the popup   body.
              scope: scope, // Scope (optional). A scope to link to the popup content.
              buttons: [{ // Array[Object] (optional). Buttons to place in the popup footer.
                text: param.buttons.cancelText,
                type: param.buttons.cancelType,
                onTap: function(e) {
                  return false;
                }
              }, {
                text: param.buttons.okText,
                type: param.buttons.okType,
                onTap: function(e) {
                  // Returning a value will cause the promise to resolve with the given value.
                  return scope.value;
                }
              }]
           });
          return show;
        }
    }
 });

デモ: http://codepen.io/aishahismail/pen/pgpdGW?editors=101

あなたの助けが本当に必要です。ありがとうございました。

4

1 に答える 1

3

JS (および Angular) オブジェクトの継承 [1] により、プリミティブをオブジェクトに「ラップ」する必要があります。

http://codepen.io/beaver71/pen/JGMvdV

主な編集は次のとおりです。

$scope.data = {};

...

template: '<input type="text" ng-model="data.value">'

[1] Popup はコントローラからスコープを継承します。一般的に参照してください: https://github.com/angular/angular.js/wiki/Understanding-Scopes

于 2016-01-21T13:23:08.407 に答える