使用 Javascript 和 Mootools 为 Web 应用程序实现另存为草稿功能
大家好,我需要实现“另存为草稿”功能。 我所思考的逻辑是这样的。
逻辑:单击“另存为草稿”按钮时,我将添加一个事件来将 Web 应用程序的内容存储在临时数据库中,并将控件返回到主页。
问题:如果该框架中有一些功能可用,则使用 js 和 mootools 实现。
Hey guys I need to implement "Save as Draft" Feature.
The logic for this that I have thought about goes this way.
Logic: On click of "Save as Draft" button I would add an event to store the contents of my web applicationin a temp db and return the control to Home Page.
Problem: Implementation using js and mootools if incase there are some features available in this framework .
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您正在寻找类似于 StackOverflow 和其他 Stack Exchange 站点如何“保存”您的问题的东西,即使您退出浏览器并返回......那么 Ryan 建议的(localStorage)就是您想要实现的。
更多信息
天哪,即使没有,也尝试使用它。唯一的缺点是 localStorage 是 HTML5,因此在旧版浏览器中的支持充其量是不稳定的。 (出于所有意图和目的,IE8+ 和 FF3.5+ 支持 localStorage)
If you're looking for something similar to how StackOverflow and other Stack Exchange sites "save" your question, even if you exit the browser and come back... then what Ryan suggested (localStorage) is what you'd be looking to implement.
More info
Hell, even if not, try using it anyway. The only downside is that localStorage is HTML5, and thus support in older browsers is spotty at best. (For all intents and purposes, IE8+ and FF3.5+ support localStorage)