我无法让 angular-strap 模态指令正常工作。内容只显示一次,之后我只得到 {{angular-expression-here}}。来自 angular-strap 页面的原始链接也不起作用。您只能在第一次看到“Hello Modal”。如果您想再次看到该消息,您必须更改它(例如:“Hello Modal 1”)。
如果您使用“with $http service”按钮,就会发生这种情况。
这里的笨蛋
我无法让 angular-strap 模态指令正常工作。内容只显示一次,之后我只得到 {{angular-expression-here}}。来自 angular-strap 页面的原始链接也不起作用。您只能在第一次看到“Hello Modal”。如果您想再次看到该消息,您必须更改它(例如:“Hello Modal 1”)。
如果您使用“with $http service”按钮,就会发生这种情况。
这里的笨蛋
在这里找到了答案。
在模态配置中添加persist:true对我有用。
var modal = $modal({
template: 'partials/main/modal.html',
show: true,
backdrop: 'static',
scope: $scope,
persist: true
});