0

我无法使用稀疏的 ng-Toast 文档找到此信息。

我有一个对象列表,我将 $scope.notifications 设置为。我希望这些对象出现在“吐司”中。我设置'$scope.notifications = x;' 然后我的 ng-Toast 看起来像这样:

                ngToast.create({
                  content: $scope.notifications,
                  compileContent: true,
                  compileToScope: $scope
                });

但是,我只在出现的 toast 中看到 '[object] [object]。有任何想法吗?

4

1 回答 1

1

答案是'是的,你可以'。

例子:

            $scope.notifications = x;
            ngToast.create({
                content: '{{notice.content}}',
                compileContent: true,
                compileToScope: $scope
            });

整洁的。

于 2017-03-20T18:10:09.317 回答