在config angular js中添加Toaster

时间:2015-10-26 04:38:58

标签: angularjs config

我能够成功添加烤面包机以保护角度js。但无法添加到配置文件。

请帮我在angularjs配置文件中添加烤面包机。

注意:我只是想为所有文件添加异常消息作为烤面包机。所以想在core.config文件中添加这个烤面包机。

2 个答案:

答案 0 :(得分:-1)

<gap:plugin name="com.phonegap.plugins.facebookconnect" version="0.9.0"> <param name="APP_ID" value="998855950166112" /> 
<param name="APP_NAME" value="abc" /> 
</gap:plugin>

答案 1 :(得分:-1)

感谢您的回复。

angular.module('myprofile')
    .factory('PeService', PeService);


ProfileService.$inject = ['toaster'];
function PeService(toaster) {
    ...
}

这对我来说很好。但

angular.module('core').config(coreConfig);

coreConfig.$inject = ['$provide','toaster'];
function coreConfig($provide,toaster) {
    ... 
}

对我不起作用