博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
React 深度学习:ReactSideEffectTags
阅读量:6153 次
发布时间:2019-06-21

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

path:packages/shared/ReactSideEffectTags.js

React 副作用标记

源码

export type SideEffectTag = number;// Don't change these two values. They're used by React Dev Tools.export const NoEffect = /*              */ 0b000000000000;export const PerformedWork = /*         */ 0b000000000001;// You can change the rest (and add more).export const Placement = /*             */ 0b000000000010;export const Update = /*                */ 0b000000000100;export const PlacementAndUpdate = /*    */ 0b000000000110;export const Deletion = /*              */ 0b000000001000;export const ContentReset = /*          */ 0b000000010000;export const Callback = /*              */ 0b000000100000;export const DidCapture = /*            */ 0b000001000000;export const Ref = /*                   */ 0b000010000000;export const Snapshot = /*              */ 0b000100000000;export const Passive = /*               */ 0b001000000000;// Passive & Update & Callback & Ref & Snapshotexport const LifecycleEffectMask = /*   */ 0b001110100100;// Union of all host effectsexport const HostEffectMask = /*        */ 0b001111111111;export const Incomplete = /*            */ 0b010000000000;export const ShouldCapture = /*         */ 0b100000000000;复制代码

遗留问题

为什么这些标记要使用二进制数表示?在 React 源码中很多地方使用 |= 的运算符

转载于:https://juejin.im/post/5d061cecf265da1bc23f76b6

你可能感兴趣的文章
js插件---图片懒加载echo.js结合 Amaze UI ScrollSpy 使用
查看>>
java中string和int的相互转换
查看>>
P1666 前缀单词
查看>>
HTML.2文本
查看>>
Ubuntu unity安装Indicator-Multiload
查看>>
解决Eclipse中新建jsp文件ISO8859-1 编码问题
查看>>
7.对象创建型模式-总结
查看>>
【论文阅读】Classification of breast cancer histology images using transfer learning
查看>>
移动端处理图片懒加载
查看>>
jQuery.on() 函数详解
查看>>
谈缓存和Redis
查看>>
【转】百度地图api,根据多点注标坐标范围计算地图缩放级别zoom自适应地图
查看>>
用户调研(补)
查看>>
ExtJS之开篇:我来了
查看>>
☆1018
查看>>
oracle 去掉空格
查看>>
6.13心得
查看>>
Runtime类
查看>>
eclipse decompiler
查看>>
记一个搜索网盘资源的网站
查看>>