When working with Sitecore, it’s common to need content synchronization across environments. Today, I’ll walk you through the steps to sync content from Production to UAT/TEST and vice versa. Steps to Follow 1. Set Up Your Workspace Create a folder on your computer where you will manage the script files and exported data. Open the folder path in PowerShell to begin scripting. We need to run some scripts in PowerShell to update the folder with the basic requirements for syncing content. PS C:\Soft\ContentSync> dotnet new tool-manifest PS C:\Soft\ContentSync> dotnet nuget add source -n Sitecore https://nuget.sitecore.com/resources/v3/index.json PS C:\Soft\ContentSync> dotnet tool install Sitecore.CLI PS C:\Soft\ContentSync> dotnet sitecore cloud login If the above error occurs, you will need to run a different command to resolve the issue. PS C:\Soft\ContentSync> dotnet sitecore init now, Again run above command to open and authenticate with XM Cloud. It will be there a...
What is $scope and $rootScope ?
$Scope
: - A $scope is an object which is use
to bind view with the controller .it’s very usefull to communicate between view
and controller.
$ rootScope : - $rootScope is only one in an
app and can be shared in the whole applications so that it can called as global
variable and all except this all other are children of $rootScope.
Let’s check in example which can help you to
understand in better way.
Example :- Suppose we two controller Ctl1 and Ctl2 .
<!doctype
html>
<html>
<body
ng-app="myDemoApp">
<div
ng-controller="Ctl1" >
Hello {{message}}!
<br
/>
Hello,
You are {{name}}! (rootScope)
</div>
<br
/>
<div
ng-controller="Ctl2" >
Hello {{message}}!
<br
/>
Hey {{Name}}!
<br
/>
Hi, you
are {{name}}! (rootScope)
</div>
<script
src="lib/angular.js"></script>
<script>
var app
= angular.module('myDemoApp', []);
app.controller('Ctl1',
function ($scope, $rootScope) {
$scope.message
= 'World';
$rootScope.name
= 'AngularJS';
});
app.controller('Ctl2',
function ($scope, $rootScope) {
$scope.message
= 'This is angular demo on scope';
$scope.name
= $rootScope.name;
});
</script>
</body>
</html>
|
Comments
Post a Comment