We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
架构设计
模式介绍
请求流程
接口设计
getPageConfig
入参:pageId
出参:json
{ pageId: xxx, ... chunks: [ { chunkUrl: xxx, // 组件地址 chunkData: xxx, // 组件数据,来源于后台配置/业务接口,首屏数据尽量放到这个接口里。非首屏数据放到组件内部惰性请求 }, { chunkUrl: xxx, chunkData: xxx, } ... ] }
实现组件动态化
每个页面都会请求这个接口,会存在请求量过大的情况,如何优化?
组件设计
管理后台
The text was updated successfully, but these errors were encountered:
No branches or pull requests
面向组件的应用发布的模式
架构设计
模式介绍
请求流程
接口设计
getPageConfig
入参:pageId
出参:json
实现组件动态化
每个页面都会请求这个接口,会存在请求量过大的情况,如何优化?
组件设计
管理后台
The text was updated successfully, but these errors were encountered: