摘要:
Vuex 改变 store 中的状态的唯一途径就是显式地提交 (commit) mutation。在 Vuex 中,mutation 都是同步事务。 Action 类似于 mutation,不同在于: Action 提交的是 mutation,而不是直接变更状态。 Action 可以包含任意异步操作 阅读全文
摘要:
HTML5新特性之文件和二进制数据的操作 1、Blob对象 2、FileList对象 3、File对象 4、FileReader 对象 5、URL对象 阅读全文