android 中 Pagingconfig 中的页面大小是多少

What is pagesize in Pagingconfig in android

fun getList() : Flow<PagingData<Store>>{
        return Pager(config = PagingConfig(pageSize = 1),pagingSourceFactory = {MyListPagingSource(service)}).flow.cachedIn(viewModelScope)
    }

谁能告诉我这里指的页面大小是多少

发出分页请求时,其他已知参数是 pageSize 参数。它描述了您期望后端服务器响应的长度。但是,此长度不是字符数,而是服务器在发出该请求时应向您发送的记录数。

因此,页面大小为 10 的帖子的列表请求只会获取 10 个,而不是可能的数百万个帖子。

请注意:您通常将 pageSize 设置为 100s,而不是 1 或 10s。