カルーセルを実行中で、状態の更新時にインライン変換が機能しません。状態が更新されたときにスタイルが更新されない
class Carousel extends React.Component {
constructor() {
super();
this.state = {
hover: false,
containers: 0,
imgList: [],
translate: 0,
fullWidth: 0,
width: 0
};
this.height = 400;
this.moveLeft = this.moveLeft.bind(this);
this.moveRight = this.moveRight.bind(this);
}
componentWillMount() {
const imgList = [
'http://2.bp.blogspot.com/--r4xdyuNQCQ/UAu7wFbDfDI/AAAAAAAAIUg/qtlUyQ8XKYM/s1600/Hdhut.blogspot.com+%2811%29.jpeg',
'http://4.bp.blogspot.com/-BJaTlb_j_Fw/TwK1agDhf-I/AAAAAAAABb0/nvYDoNoSCPk/s1600/singapore-wallpaper-2-778799.jpg',
'http://greatinspire.com/wp-content/uploads/2016/06/Most-Beautiful-Places-In-Japan-9.jpg',
'http://www.thetravelexperts.net/gallery/places-to-visit-in-france/9_eiffel_tower.jpg'
];
this.setState({ imgList: [...imgList] });
}
moveLeft() {
const { translate, fullWidth } = this.state;
this.setState({ translate: translate + fullWidth });
}
moveRight() {
const { translate, fullWidth } = this.state;
this.setState({ translate: translate - fullWidth });
}
componentDidMount() {
const fullWidth = document.body.clientWidth;
const width = fullWidth/2;
this.setState({ fullWidth, width });
}
render() {
const { imgList, translate, fullWidth, width } = this.state;
return (
<nav className={style.wrapper} style={{ height: this.height }}>
<div className={style.arrows} style={{ width: `${fullWidth}px` }}>
<div className={style['arrow-left']} onClick={this.moveLeft} />
<div className={style['arrow-right']} onClick={this.moveRight} />
</div>
<ul
className={style.ul}
style={{ transform: `translateX(${translate})` }}
>
{imgList.length > 0 &&
imgList.map(src =>
<li
key={src}
className={style.li}
style={{ width: `${width}px` }}
>
<figure className={style.figure}>
<img className={style.img} width={width} src={src} />
</figure>
</li>
)}
</ul>
</nav>
);
}
}
export default Carousel;
このコードは、基本的に私のul要素を取り、自分の画像を表示するために左と右にするためにそれを翻訳:
は、ここに私のコンポーネントです。 moveRightとmoveLeftのfinalでthis.forceUpdateを使用しようとしましたが、動作しませんでした。
どうしたのですか?
あなたの変数がよく更新されていますか?レンダリングメソッドがうまく呼び出されていますか? (実際にどこに問題があるかをコンソールログで試してみると、どちらか一方である可能性があります) – Nevosis
変数が更新されました。ログに記録されました –
レンダリングメソッドには?あなたのレンダーが再び呼び出され、変数がうまく設定されていれば変です。 – Nevosis