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...
scope inheritance
Scope inheritance in AngularJS is in organize into
hierarchy and it is use by views. In Hierarchy of scope $rootScope is a parent
and $Scope is a child.
$rootScope is a global variable it is a single in
application and $Scope can be multiple in a application.variable created in $scope
is use by the view based on that controller.
See Example which can help you understand.
Suppose we have two controller parent and child.
<html>
<head>
<script
src="lib/angular.js"></script>
<script>
var app
= angular.module('ScopeChain', []);
app.controller("parent",
function ($scope) {
$scope.Name
= 'Shashi Keshar';
$scope.$parent.CompAddress
= 'Delhi ';
|
Comments
Post a Comment