我无法使角度模式指令正常工作。内容只出现一次,之后我才得到{{angular-expression-here}}。来自角带页面的原始链接也不起作用。你只能看到" Hello Modal"第一次。如果你想再次看到这条消息,你必须改变它(例如:" Hello Modal 1")。
如果你使用"和$ http服务"会发生这种情况。按钮。
plunkr here
答案 0 :(得分:1)
找到答案here。
将 persist:true 添加到为我工作的模态配置中。
var modal = $modal({
template: 'partials/main/modal.html',
show: true,
backdrop: 'static',
scope: $scope,
persist: true
});