我怎么能用角度来动态我的flash消息。消息必须通过API响应
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了我怎么能用角度来动态我的flash消息。消息必须通过API响应相关的知识,希望对你有一定的参考价值。
我的flash消息代码如下
<div class="flash-message" ng-if="flash">
<div class="{{'alert alert-' + flash.type}}" ng-bind="flash.message">
</div>
现在我正在使用
FlashService.Success('You have blocked this User');
我想让我的上述消息动态,我现在已经通过了静态。
我的节点api现在返回此消息
{
"data": {
"status": "1",
"msg": "You have blocked the user"
}
}
答案
将结果传递给函数回调。
{
"data": {
"status": "1",
"msg": "You have blocked the user"
}
}
下面的代码使flash消息动态化。
FlashService.Success(result.data.msg);
以上是关于我怎么能用角度来动态我的flash消息。消息必须通过API响应的主要内容,如果未能解决你的问题,请参考以下文章