- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用Meteor 1.3.4.1、kurounin:pagination 1.0.9和react-komposer 1.8.0(npm包)。
这是我在 Composer 函数中实例化分页的代码:
function composer(props, onData) {
console.log('loading pages');
const pagination = new Meteor.Pagination(UfcFighters);
if( pagination.ready() ) {
console.log('ready');
const fighters = {
columns: [
{ width: '5%', label: '', className: '' },
{ width: '20%', label: 'Name', className: 'text-center' },
{ width: '20%', label: 'Wins/Losses/Draws', className: 'text-center' },
{ width: '20%', label: 'Weight Class', className: 'text-center' },
{ width: '10%', label: 'Status', className: 'text-center' },
{ width: '10%', label: 'Rank', className: 'text-center' },
],
data: pagination.getPage(),
};
onData(null, { fighters, pagination });
}
};
这是 React Komposer 的正确用法吗?我注意到分页会不断加载订阅,并且永远不会准备好呈现数据。控制台输出会重复显示“正在加载页面”,但从未显示“就绪”。
如有任何建议,我们将不胜感激。
最佳答案
对我来说看起来不错,我认为如果分页尚未准备好,您只需要返回即可。
function composer(props, onData) {
const pagination = new Meteor.Pagination(UfcFighters);
if(!pagination.ready()) { return; }
const fighters = {
columns: [
{ width: '5%', label: '', className: '' },
{ width: '20%', label: 'Name', className: 'text-center' },
{ width: '20%', label: 'Wins/Losses/Draws', className: 'text-center' },
{ width: '20%', label: 'Weight Class', className: 'text-center' },
{ width: '10%', label: 'Status', className: 'text-center' },
{ width: '10%', label: 'Rank', className: 'text-center' },
],
data: pagination.getPage(),
};
onData(null, { fighters, pagination });
};
关于javascript - 使用 React Komposer 进行分页,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38187824/
我正在使用Meteor 1.3.4.1、kurounin:pagination 1.0.9和react-komposer 1.8.0(npm包)。 这是我在 Composer 函数中实例化分页的代码:
我正在尝试将一个文档化的项目迁移到 kubernetes,我使用 Kompose 来转换项目 kompose --file docker-compose.yml convert , 当我运行 komp
我目前正在通过使用 Kompose (http://www.kompose.io) 将 docker-compose 配置转换为 kubernetes 配置文件,在 kubernetes 集群上部署一
我正在使用 react Komposer meteor 和 react 。我有这个组件 import React from 'react'; import getMuiTheme from 'mate
我已经准备好带有 docker-compose 设置的项目。现在我想迁移到 Kubernetes。我用 Kompose用于从 docker-compose 转换为 kubernetes 的工具。 例如
我有这个docker-compose.yml和 Docker for Desktop Windows 与本地 kubernetes 集群(默认 docker-desktop 上下文)运行: versi
我有一个 React 组件Post: export class Post extends React.Component { constructor(props) { this.stat
我有一个简单的docker-compose.yml文件以这种方式定义: version: '3' services: db: image: postgres:10.5-alpine
我是一名优秀的程序员,十分优秀!