<select ng-model="thing"
data-ng-options="thing.id as thing.name for thing in things"
ng-change="doSomething()">
</select>
我有一些像上面那样的代码。当用户选择“东西”时,它会立即更改模型。相反,我想弹出一个模态并询问用户是否确定他希望在模型更改之前进行更改。有没有一个很好的方法来做到这一点。我研究了一些停止传播(1,2)解决方案,但我不确定这是处理这个问题的好方法。
简而言之,我如何在这里实现目标?
编辑:window.event.stopPropagation();
不会停止更改。