我有这个示例 html 文件。在这里,我使用 angular-toast 通知。我在这里面临的问题是吐司消息总是出现在右上角。
script.js 文件包含
angular.module('main', ['ngAnimate', 'toaster']).controller('myController', function($scope,toaster, $window) {
$scope.pop = function(){
toaster.pop('success', "title", 'message');
};
$scope.clear = function(){
toaster.clear();
};
});
请找到 plunker 链接http://plnkr.co/edit/pzuW5OVkoxLF7zl0mGaC?p=preview
提前致谢