मुझे कोणीय यूआई मोडल के लिए स्कोप को समझने / उपयोग करने में परेशानी हो रही है।
यहां तुरंत स्पष्ट नहीं होने के दौरान, मेरे पास मॉड्यूल और सब कुछ सही तरीके से सेट है (जहां तक मैं बता सकता हूं), लेकिन विशेष रूप से ये कोड नमूने हैं जहां मैं बग ढूंढ रहा हूं।
index.html (इसका महत्वपूर्ण भाग)
<div class="btn-group">
<button class="btn dropdown-toggle btn-mini" data-toggle="dropdown">
Actions
<span class="caret"></span>
</button>
<ul class="dropdown-menu pull-right text-left">
<li><a ng-click="addSimpleGroup()">Add Simple</a></li>
<li><a ng-click="open()">Add Custom</a></li>
<li class="divider"></li>
<li><a ng-click="doBulkDelete()">Remove Selected</a></li>
</ul>
</div>
नियंत्रक (js) (फिर से, महत्वपूर्ण हिस्सा)
MyApp.controller('AppListCtrl', function($scope, $modal){
$scope.name = 'New Name';
$scope.groupType = 'New Type';
$scope.open = function(){
var modalInstance = $modal.open({
templateUrl: 'partials/create.html',
controller: 'AppCreateCtrl'
});
modalInstance.result.then(function(response){
// outputs an object {name: 'Custom Name', groupType: 'Custom Type'}
// despite the user entering customized values
console.log('response', response);
// outputs "New Name", which is fine, makes sense to me.
console.log('name', $scope.name);
});
};
});
MyApp.controller('AppCreateCtrl', function($scope, $modalInstance){
$scope.name = 'Custom Name';
$scope.groupType = 'Custom Type';
$scope.ok = function(){
// outputs 'Custom Name' despite user entering "TEST 1"
console.log('create name', $scope.name);
// outputs 'Custom Type' despite user entering "TEST 2"
console.log('create type', $scope.groupType);
// outputs the $scope for AppCreateCtrl but name and groupType
// still show as "Custom Name" and "Custom Type"
// $scope.$id is "007"
console.log('scope', $scope);
// outputs what looks like the scope, but in this object the
// values for name and groupType are "TEST 1" and "TEST 2" as expected.
// this.$id is set to "009" so this != $scope
console.log('this', this);
// based on what modalInstance.result.then() is saying,
// the values that are in this object are the original $scope ones
// not the ones the user has just entered in the UI. no data binding?
$modalInstance.close({
name: $scope.name,
groupType: $scope.groupType
});
};
});
create.html (इसकी संपूर्णता में)
<div class="modal-header">
<button type="button" class="close" ng-click="cancel()">x</button>
<h3 id="myModalLabel">Add Template Group</h3>
</div>
<div class="modal-body">
<form>
<fieldset>
<label for="name">Group Name:</label>
<input type="text" name="name" ng-model="name" />
<label for="groupType">Group Type:</label>
<input type="text" name="groupType" ng-model="groupType" />
</fieldset>
</form>
</div>
<div class="modal-footer">
<button class="btn" ng-click="cancel()">Cancel</button>
<button class="btn btn-primary" ng-click="ok()">Add</button>
</div>
तो, मेरा सवाल यह है: यूआई के लिए गुंजाइश दोगुनी क्यों नहीं है? और क्यों this
अनुकूलित मान है, लेकिन $scope
नहीं करता है?
मैंने ng-controller="AppCreateCtrl"
create.html में बॉडी डी.वी.
इस बिंदु पर, मेरी ही एकमात्र विकल्प के साथ एक वस्तु वापस पारित करने के लिए है this.name
और this.groupType
उपयोग करने के बजाय $scope
, लेकिन यह गलत लगता है।