gpt4 book ai didi

reactjs - react 网格布局 html 不更新列

转载 作者:行者123 更新时间:2023-12-04 07:57:53 27 4
gpt4 key购买 nike

我使用 react 网格布局:https://github.com/react-grid-layout/react-grid-layout
我不明白为什么我的表格中的列数没有通过网络浏览器更新。
事实上,this.props.cols.lg 要么是 17,要么是 24。
当它是 17 时,我的表显示正确。另一方面,当我选择一个包含 24 列的时间段时,我的列从 18 日起排在另一个下方。
this.props.cols.lg 为正确的值(17 或 24),但我的 HTML 页面没有更新到设计级别。
这是右表单排 :
enter image description here
Right table
如您所见,firefox 网络控制台显示 17 的 react 属性很好:
enter image description here
和坏 table
enter image description here
Bad table
再次,firefox web 控制台显示 react 属性是正确的 (24) 但未被 web 浏览器应用:
enter image description here
重要信息,

this.props.cols.lg=loopValue+1; **contains the right value (17 or 24) but apply on 17**
预先感谢您的帮助。
这是我的代码的一部分:
import React, { useState, useEffect, Fragment } from 'react';
import { WidthProvider, Responsive } from "react-grid-layout";
import ReactTooltip from 'react-tooltip';
import _ from "lodash";
import { Button, Container } from 'react-bootstrap';
const ResponsiveReactGridLayout = WidthProvider(Responsive);
import { Responsive as ResponsiveGridLayout } from 'react-grid-layout';
/**
* This layout demonstrates how to use a grid with a dynamic number of elements.
*/
export class AddRemoveLayout extends React.PureComponent {
//les propriétés par défaut
static defaultProps = {
className: "layout border-darken-1 child-background-color",
cols:
{ lg: 10, md: 10, sm: 10, xs: 10, xxs: 10 },
width: 1000,
margin: [0, 0],
preventCollision: true,
autoSize: true,
// preventCollision: true,
rowHeight: 70,

// Build HTML to insert
render() {


//Week
let createDateItem =
(x, y, day) => ({
i: `date-${x}_${y}`,
x,
y,
w: 1,
h: 1,
myText: `${day}` ,
static: true
});
/**
*
* @param {*} y
* @param {*} xStart
* @param {num semaine} dateStart
* @param {nombre semaine total} count
*/

let getDateItems =
(y, xStart, dateStart, count,dateEnd) => {
let items = [];

let loopValue = 0;

while(dateStart<=dateEnd){//semainee
if(loopValue>1){
dateStart.setDate(dateStart.getDate() + 7)
}
if(dateStart<=dateEnd){
items.push(
createDateItem(xStart + loopValue, y, loopValue === 0 ? 0 :
(dateStart.getDate()+"/" +(dateStart.getUTCMonth()+1)+ " (Sem. "+loopValue +") ")
))
}
loopValue++;
}

console.log('props:')
console.log(this.props);
this.props.cols.lg=loopValue+1;
this.props.cols.md=loopValue+1;
this.props.cols.sm=loopValue+1;
this.props.cols.xs=loopValue+1;
this.props.cols.xxsloopValue+1;
console.log(this.props);

// console.log(AddRemoveLayout.defaultProps)

return items;
}
;

最佳答案

我们找到了解决方案:

data: { idHoraire: 1 },
它总是发送到 PHP 的相同项目,使用此代码,我对我的列有很大的显示,因为我要么发送 1 (17 cols) 要么 2 (25 cols) :
data: { idHoraire: url === "index2" ?2 : 1, },

关于reactjs - react 网格布局 html 不更新列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66611567/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com