আমি নিয়ন্ত্রণকারীদের জুড়ে ডেটা ভাগ করার চেষ্টা করছি। ইউজ-কেস একটি মাল্টি-স্টেপ ফর্ম, একটি ইনপুটতে প্রবেশ করা ডেটা মূল কন্ট্রোলারের বাইরে একাধিক ডিসপ্লে লোকেশনে ব্যবহৃত হয়। নীচে এবং jsfiddle এ কোড এখানে ।
এইচটিএমএল
<div ng-controller="FirstCtrl">
<input type="text" ng-model="FirstName"><!-- Input entered here -->
<br>Input is : <strong>{{FirstName}}</strong><!-- Successfully updates here -->
</div>
<hr>
<div ng-controller="SecondCtrl">
Input should also be here: {{FirstName}}<!-- How do I automatically updated it here? -->
</div>
জাতীয়
// declare the app with no dependencies
var myApp = angular.module('myApp', []);
// make a factory to share data between controllers
myApp.factory('Data', function(){
// I know this doesn't work, but what will?
var FirstName = '';
return FirstName;
});
// Step 1 Controller
myApp.controller('FirstCtrl', function( $scope, Data ){
});
// Step 2 Controller
myApp.controller('SecondCtrl', function( $scope, Data ){
$scope.FirstName = Data.FirstName;
});
কোন সাহায্য ব্যাপকভাবে প্রশংসা করা হয়।