6

我有这个示例 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

提前致谢

4

3 回答 3

11

在您想要的选项中:position-class,不是positionClass

于 2014-12-19T12:26:33.813 回答
4

为了完整起见,我添加了以下代码:

<toaster-container toaster-options="{'time-out': 3000, 'position-class': 'toast-bottom-left', 'close-button':true, 'animation-class': 'toast-bottom-left'}"></toaster-container>
于 2015-12-21T22:35:04.403 回答
2

将其修改为:

'position-class': 'toast-bottom-right','close-button':true
于 2014-12-22T10:50:08.767 回答