angular-strap模态指令不显示内容两次

时间:2013-10-03 11:58:40

标签: angularjs angular-strap

我无法使角度模式指令正常工作。内容只出现一次,之后我才得到{{angular-expression-here}}。来自角带页面的原始链接也不起作用。你只能看到" Hello Modal"第一次。如果你想再次看到这条消息,你必须改变它(例如:" Hello Modal 1")。

如果你使用"和$ http服务"会发生这种情况。按钮。

plunkr here

1 个答案:

答案 0 :(得分:1)

找到答案here

persist:true 添加到为我工作的模态配置中。

var modal = $modal({
        template: 'partials/main/modal.html',
        show: true,
        backdrop: 'static',
        scope: $scope,
        persist: true
    });