我正在尝试在 angularJS 上构建一个简单的通知服务:
angular.module("my.services", [])
.service("NotificationsService", function() {
this.show = function(message, options) {
// display a notification
};
this.error = function(message) {
this.show({...});
}
...
});
当服务器返回嵌入在 api 中的“通知”数组时,这将被触发:
{
notifications: [{type: "error", message: "Error message"}, ...],
data: [item1, item2, ...]
}
现在我想将我的服务插入 $http,但我找不到这样做的方法!...
有任何想法吗 ?