- 快速开始
- JSX 介绍
- JSX+ 介绍
- 组件
- 事件处理
- 样式设置
- Hooks 介绍
- Driver 介绍
- 容器差异
- 工程介绍
- 目录结构
- 应用配置
- 应用入口
- 生命周期
- 路由管理
- 简介
- 语法约束
- Hooks
- 多端组件开发
- API 使用
- 静态资源引用
- 项目构建配置
- 页面配置
- 使用原生项目配置文件
- Rax 与小程序代码混用
- FAQ
- 更新日志
- 简介
- 环境变量与 Framework
- Weex Style 支持表
- Weex 组件
- Weex 模块
- 页面降级
- JS Service
- Bundle 解析
- 事件与手势
- 事件通信
- Weex 国际化
- Weex 常见问题
- 简介
- Document
- App Shell
- 代码分离
- 保存至桌面
- 渲染节点快照
- 预加载和预渲染
- 页面保活
- 缓存控制
- PHA 介绍
- 快速开始
- 编码指南
- 数据请求
- FaaS 接入: Now
- FaaS 接入: FC
- 与 Node 应用集成
- 数据请求
- 异步编程
- Rax 错误码
- 简介
- Lite 工程
- 云端一体化工程
- 插件配置
- 插件开发
- 插件简介
- build-plugin-rax-app
- build-plugin-rax-component
- build-plugin-rax-multi-pages
- build-plugin-rax-ssr
- build-plugin-rax-compat-react
- rax-plugin-app 0.1.0 升级
- 调试 Web
- 调试小程序
- 加载性能优化
- 渲染性能优化
- 从 Rax 0.x 升级
- 从 React 迁移
- API 概述
- render
- hydrate
- createPortal
- findDOMNode
- setNativeProps
- getElementById
- unmountComponentAtNode
- createElement
- cloneElement
- createFactory
- isValidElement
- Children
- memo
- Fragment
- createRef
- forwardRef
- useState
- useEffect
- useLayoutEffect
- useContext
- useRef
- useCallback
- useMemo
- useReducer
- useImperativeHandle
- PropTypes
- version
- ActionSheet
- Background
- Keyboard
- Animation
- Transition
- Toast
- Alert
- Confirm
- Loading
- Navigate
- ChooseImage
- Image
- Request
- Network
- File
- Env
- Device
- Clipboard
- AppState
- AsyncStorage
- Accelerometer
- 组件概述
- Text
- View
- TextInput
- Link
- Icon
- Image
- Picture
- Video
- ScrollView
- RecyclerView
- Waterfall
- Embed
- Countdown
- Canvas
- RefreshControl
- Slider
- Modal
- Weex JS Service
- Rax 长列表最佳实践
- 如何减小 Bundle Size
- Rax 0.x 开发工具
- Native 知识扫盲
- iOS 无障碍
- Rax 性能最佳实践
- 从零上手 Rax
- Rax v0.6 组件体验升级
- Rax v0.5 建立服务体系
- Rax v0.3 跨端生态建设
- Rax v0.2 基础能力建设
- 2016 淘宝双促中的 Rax
- Why Rax?
Rax 错误码
在线上版本的 Rax 打包策略中,我们移除了冗长的错误提示以获得更小的包 (bundle) 体积,而使用一个数字类型的错误码来替代。本文可以帮助你找到错误码对应的错误原因,以便完成线上问题的排查。
需要注意的是,错误码仅是帮助快速完成异常定位,如果需要获取发生错误的调用栈,你仍需要将 Rax 打包为开发版本并通过 sourceMap
机制找到异常在源码中的位置。
注:线上版本指的是使用 rax-scripts 执行 build 操作时打出的代码包,会注入
process.env.NODE_ENV
变量的值为production
,你也可以直接使用预构建的分发版本rax/dist/rax.min.js
文件。
错误码 0
Type of createElement should not be null or undefined.
这个错误出现在调用 createElement
方法时。当传入的第一个参数为 null
或者 undefined
时会触发这个问题,通常可能是因为未获取到创建的 JSX 组件的引用:
以下例子中,如果引入的 Foo
为 null
或 undefined
,便会触发该错误。
import Foo from './some-where';
<Foo />
// compiled to `createElement(Foo)`
错误码 1
Hooks can only be called inside a component.
这个错误出现在调用 Rax hooks 相关 API 时。通常有两种可能,一是在业务中引入了多份 Rax,而调用 hooks 的 Rax 并没有实际参与渲染;二是在组件渲染流程外调用了 hooks,或者是在 class 组件中调用了 hooks API。
错误码 2
Invalid element type.
这个错误通常出现在渲染异常类型的节点时,Rax 接受的节点类型包括 Element(createElement 返回的对象),Array,String,Number,Boolean,null,undefined。
错误码 3
ref: multiple version of Rax used in project.
这个错误通常出现在使用 ref 时,引入了多份 Rax 实例。
错误码 4
Too many re-renders, the number of renders is limited to prevent an infinite loop.
这个错误通常出现在死循环调用的组件中,当短时间内渲染的次数超过阈值时,Rax 认为渲染流程陷入了无限循环。
错误码 5
Driver not found.
这个错误通常出现在调用 render
方法未传入 driver
时,从 Rax 1.0 开始,render 方法必须显式指定渲染的 driver
。
import { render, createElement } from 'rax';
import DriverUniversal from 'universal-driver';
render(<div />, null, { driver: DriverUniversal });
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论