angular-gcms使用谷歌电子表格作为后端内容存储库

安装:

bower install jlovison/angular-gcms

将其添加到您的项目中:

angular.module('YourModule',['OtherStuff','jlovison.gcms'])

假设您有一个ID为"12345"的谷歌电子表格,并且包含两列数据("title"和"post"),可以按以下方式拉取电子表格中的数据:

angular.module('YourApp')
.controller('YourController',function($scope,GcmsService){
GcmsService.get(
'12345',//电子表格ID
['title','post']//列名数组
).then(function(data){
$scope.posts=data;
});
});