我正在使用angular dashboard framework製作窗口小部件,但我堅持如何將服務中生成的數據值傳遞給控制器?我想將var new_x的值傳遞給控制器 - 它在函數showInfo中生成的服務中。但是我加入時,得到下面的錯誤控制器如何在Angularjs中將值從服務傳遞給控制器
TypeError: Cannot read property 'showInfo' of undefined
at new <anonymous> (piechartCtrl.js:62) *(piechartCtrl.js:62 is data: $scope.chartService.showInfo())*
at invoke (angular.js:4523)
at Object.instantiate (angular.js:4531)
at angular.js:9197
at $q.all.then.msg (widget-content.js:115)
at processQueue (angular.js:14792)
at angular.js:14808
at Scope.$get.Scope.$eval (angular.js:16052)
at Scope.$get.Scope.$digest (angular.js:15870)
at Scope.$get.Scope.$apply (angular.js:16160)
我的代碼是以防萬一它是需要
「使用嚴格的」
angular.module('adf.widget.charts')
.service('chartService', function(){
return {
getUrl: function init(path) {
Tabletop.init({ key: path,
callback: showInfo,
simpleSheet: true })
}
}
function showInfo(data, tabletop) {
var new_x = data.map(function(el) {
return {
"name": el[Object.keys(el)[0]],
"y": +el[Object.keys(el)[1]]
};
});
console.log(JSON.stringify(new_x))
};
})
.controller('piechartCtrl', function (chartService, $scope) {
$scope.chartConfig = {
options: {
chart: {
type: 'pie'
}
},
series: [{
data: $scope.chartService.showInfo()
}],
title: {
text: 'Add Title here'
},
loading: false
}
});
chart.js之;
angular.module('adf.widget.charts', ['adf.provider', 'highcharts-ng'])
.config(function(dashboardProvider){
var widget = {
templateUrl: '{widgetsPath}/charts/src/view.html',
reload: true,
resolve: {
/* @ngInject */
urls: function(chartService, config){
if (config.path){
return chartService.getUrl(config.path);
}
}
},
edit: {
templateUrl: '{widgetsPath}/charts/src/edit.html'
}
};
dashboardProvider
.widget('piechart', angular.extend({
title: 'Custom Piechart',
description: 'Creates custom Piechart with Google Sheets',
controller: 'piechartCtrl'
}, widget));
});
謝謝您的回答,但我仍然得到這個錯誤的ReferenceError:showInfo沒有定義 – Imo
檢查更新的答案,PLZ服務和控制器之間的分離,並在控制器中指定的服務的依賴性然後更新 – msoliman
檢查更新再次回答這是關於我將數據從服務返回給控制器的方式的新更新。你必須將返回的數據包裝在$ q.resolve中,以返回一個承諾..它將defintely工作..更在那裏有一個在jsfiddle中的工作示例添加 – msoliman