一旦用户从下拉列表中选择值,我就会调用ng-change函数并设置onSizeChange
$scope.maxMb
$scope.maxBytes
的值,所以我的问题是,一旦从下拉列表中选择了值,我该如何在指令中使用这些值。我试图将这些值绑定到孤立的范围,但没有运气。基本上,在将大小作为属性添加到html中的指令后,我需要$scope.FileSizeString
和fileSize
,因此这些值应绑定到隔离的作用域,但这正在发生。如何解决此问题?
指令
angular.module("App").directive('progressBarCustom', function() {
return {
restrict: 'E',
scope: {
message: "=",
fileSize: "=",
fileValue: "="
},
templateUrl: '/view/partials/progressbar.html',
controller: "StCtrl",
link: function(scope, el, attrs) {
console.log("file size", scope.fileSize);
//these values should assign to directive template once user select value from dropdown
//start
scope.maxMb = scope.fileSize;
scope.maxBytes = 1000 * 1000 * scope.maxMb;
scope.max = scope.maxBytes;
scope.FileSizeString = scope.fileValue;
// end
el.bind('click', function(event) {
scope.$parent.startRecording();
scope.$parent.stopLogs();
scope.$parent.onSizeChange();
console.log('EVENT', event);
});
};
}
});
ctrl.js
$scope.onSizeChange = function() {
$scope.maxMb = $scope.selectedFileSize.size;
$scope.maxBytes = 3000;
$scope.max = $scope.maxBytes;
$scope.FileSizeString = $scope.selectedFileSize.value;
console.log('FileSize', $scope.maxMb);
}
main.html
<div class="col-md-3">
<select class="form-control" ng-model="selectedFileSize" ng-options="item as item.value for item in FileSizeOptions" ng-change="onSizeChange()"><option value="">Select</option></select>
</div>
<progress-bar-custom ng-show="progressBarFlag" message="event" fileSize="selectedFileSize.size" fileValue="selectedFileSize.value"></progress-bar-custom>
template.html
<uib-progressbar type="success" class="progress-striped" max="max" animate="true" value="dynamic"><span>{{downloadPercentage}}%</span></uib-progressbar>
<p class="pull-right bytes-progress-0"><small>Recorded <strong>{{currentBytes}}</strong> of <strong>{{FileSizeString}}</strong></small></p>
最佳答案
将fileSize更改为file-size,将fileValue更改为file-value
<progress-bar-custom ng-show="progressBarFlag" message="event" file-size="selectedFileSize.size" file-value="selectedFileSize.value"></progress-bar-custom>
与OP讨论后更新
在指令中仅传递selectedFileSize对象,而不是将其作为两个属性发送。您可以从指令中的selectedFileSize.size和selectedFileSize.value获取值。
然后在指令中观察selectedFileSize对象
关于javascript - 如何通过 Controller 中的ng-change方法将值分配给隔离范围?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39169672/