当前位置:  开发笔记 > 编程语言 > 正文

是否可以在React中打印16次

如何解决《是否可以在React中打印16次》经验,为你挑选了2个好方法。

我正在申请。例如,我尝试在以下代码中将字母“ a”打印16次。但这没有用。这是因为我确实使用“返回”。我知道。但是它不使用错误。如何打印字母“ a” 16次?

import React from "react";
import Game from "./game";

class App extends React.Component {
  constructor(props) {
    super(props);
    this.Game = new Game();
    console.log(this.Game.play());
  }
  draw = () => {
    for (let a = 0; a < 4; a++) {
      for (let b = 0; b < 4; b++) {
        return 
a
; } } }; componentDidMount = () => { this.draw(); }; render() { return (

2048 Game With React

{this.draw()}

); } } export default App;

ageoff.. 7

您应该只给我们一个数组。填充数组,然后返回它,React将渲染组件数组。

import React from "react";
import Game from "./game";

class App extends React.Component {
  constructor(props) {
    super(props);
    this.Game = new Game();
    console.log(this.Game.play());
  }
  draw = () => {
    let result = [];
    for (let a = 0; a < 4; a++) {
      for (let b = 0; b < 4; b++) {
        result.push(
a
); } } return result; }; componentDidMount = () => { this.draw(); }; render() { return (

2048 Game With React

{this.draw()}

); } } export default App;


Code-Apprent.. 5

return让你只能得到一个中止整个循环

。您需要构建所有,
并返回
元素数组或嵌套
16
的单个元素。



1> ageoff..:

您应该只给我们一个数组。填充数组,然后返回它,React将渲染组件数组。

import React from "react";
import Game from "./game";

class App extends React.Component {
  constructor(props) {
    super(props);
    this.Game = new Game();
    console.log(this.Game.play());
  }
  draw = () => {
    let result = [];
    for (let a = 0; a < 4; a++) {
      for (let b = 0; b < 4; b++) {
        result.push(
a
); } } return result; }; componentDidMount = () => { this.draw(); }; render() { return (

2048 Game With React

{this.draw()}

); } } export default App;



2> Code-Apprent..:

return让你只能得到一个中止整个循环

。您需要构建所有,
并返回
元素数组或嵌套
16
的单个元素。

推荐阅读
惬听风吟jyy_802
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有