如果要销毁包含未保存数据的视图,则显示警告

发布于 2024-12-11 11:46:07 字数 46 浏览 0 评论 0原文

如果视图被破坏,当用户采取的操作将导致未保存的更改丢失时,我想向用户显示警告。

I want to display a warning to the user when an action they take will cause the loss of unsaved changes if the view is destroyed.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

方圜几里 2024-12-18 11:46:07

我一直认为模型拥有 synced 标志会很有用。当您设置任何内容时(默认情况下创建新对象时)会被清除,但在保存时会被设置。您必须扩展 Backbone.Model 或创建一个新的基类来与您的模型一起使用才能实现这一点,但它将使您能够询问您的模型:“您是否与服务器同步?”

I always thought thought that it would be useful for the Model to have a synced flag. One that gets cleared when you set anything (and by default when creating a new object) but gets set on save. You would have to extend Backbone.Model or create a new base class to use with your models to make it happen, but it would give you the ability to ask your models: "Are you synced with the server?"

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文