-
慕梦前来
你的这个意思是要提交退出什么呢,如果是渲染的话,render里return就好了,break的使用是循环中哦
-
幕布斯6054654
React就是js的语法,break是用来跳出for和while循环的。没有退出React这个说法,当运行完render()就是画完了react控件(可能还会进componentDidMount等方法,参见组件生命周期),如果要在render()中途退出,需要用return。
-
慕村225694
break 语句用于跳出循环。continue 用于跳过循环中的一个迭代。break 语句跳出循环后,会继续执行该循环之后的代码(如果有的话):12345678for (i=0;i<10;i++) { if (i==3) { break; } x=x + "The number is " + i + ""; }continue 语句中断循环中的迭代,如果出现了指定的条件,然后继续循环中的下一个迭代。12345for (i=0;i<=10;i++) { if (i==3) continue; x=x + "The number is " + i + ""; }