如何使用Javascript,AngularJS和RESTful Web服务调用将Sitecore字段数据公开到HTML页面?
<!doctype html>
<html ng-app>
<head>
<title>List of Sales Engineers</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.14/angular.js"></script>
<script src="../js/myangular.js"></script>
</head>
<body>
<div ng-controller="CallWebApi">
<ul>
<li ng:repeat="item in data.result.items">{{item.DisplayName}}</li>
</ul>
</div>
</body>
</html>
javascript打电话并返回Sitecore项目:
function CallWebApi($scope, $http) {
$http.get('**Sitecore URL**').
success(function (data) {
$scope.data = data;
console.log('success ' + data)
})
.error(function(data) {
console.log('failure ' + data)
});
我必须选择哪个Sitecore网址才能拨打电话?
答案 0 :(得分:0)
对于这种功能,您可以使用:
对于Sitecore 7.2或更早版本,您可以使用Sitecore Web API。在Sitecore 7.2中,它与该版本集成,之后它是一个独立的模块。
对于Sitecore 7.5或新版本,您可以使用Sitecore服务客户端 https://sitecorecontextitem.wordpress.com/2015/01/07/what-is-sitecore-services-client/