博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[MST] Restore the Model Tree State using Hot Module Reloading when Model Definitions Change
阅读量:6690 次
发布时间:2019-06-25

本文共 797 字,大约阅读时间需要 2 分钟。

n this lesson, we will set up Hot Module Reloading(HMR), making it possible to load new definitions for React components and MST models and apply them to a running application.

In this lesson you will learn:

  • How HMR roughly works
  • How to accept changes to components
  • How to accept changes to changing model definitions, while keeping state
let wishList = WishList.create(initialState)function renderApp() {    ReactDOM.render(
, document.getElementById("root"))}renderApp()if (module.hot) { module.hot.accept(["./components/App"], () => { // new components renderApp() }) module.hot.accept(["./models/WishList"], () => { // new model definitions const snapshot = getSnapshot(wishList) wishList = WishList.create(snapshot) renderApp() })}

 

转载地址:http://jckoo.baihongyu.com/

你可能感兴趣的文章
编辑vi 查看网卡命令
查看>>
常见的内存错误及其对策
查看>>
C语言:冒泡法排序一组数,如何优化?
查看>>
分享16个javascript&jQuery的MVC教程
查看>>
阿里云域名配置与解析
查看>>
容器是实现操作系统虚拟化的一种途径
查看>>
详细介绍Java中的堆、栈和常量池
查看>>
Go环境变量
查看>>
用Doxygen优化Inkpad的模块关系
查看>>
Delphi 数据类型列表
查看>>
eclipse 创建maven Web项目
查看>>
Angular之父子路由
查看>>
llvm每日谈之三 如何创建一个LLVM工程
查看>>
高性能Web服务之tomcat基础应用详解(一)
查看>>
处理logs,进行分析web展示。
查看>>
8月第二周B2B类网站排名:金泉网跃升第四
查看>>
9月第3周游戏运营类网站/频道:91.com下降7位
查看>>
关于日期处理的工具类
查看>>
java注解 声明
查看>>
【编译打包】httpsqs-1.7-2.el6.src.rpm
查看>>