我的代码中的某些地方有console.log(),但反应代码中的console.logs()都没有工作。我正在粘贴其中一些供您参考.Login.jsx http://pastebin.com/GnK5GYui和Main.jsx http://pastebin.com/nLBgTQwC。如果你想我可以发布项目的其他部分。
答案 0 :(得分:3)
它不是console.logs()
,而是console.log()
。
render(){
console.log('In Render')
return ()
}
答案 1 :(得分:3)
在return语句之外使用console.log()。 以这种方式使用。
render() {
console.log('In Render')
return (
<div> In Render </div>
)
}
答案 2 :(得分:1)
删除http://pastebin.com/GnK5GYui
中第32行的逗号console.log('In Render'),