我有一些代码
index.cshtml
<div>
@Html.React("App", new {i = 10})
</div>
App.jsx
class App extends React.Component{
constructor(props){
super(props);
console.log(this.props.i);
}
render(){
return (
<div>this.props.i</div>
)
}
}
由于某种原因,构造函数中的console.log无法在我的终端中打印出来,但是它在html中正确显示了值10。对解决此问题或在asp.net中调试React有任何建议吗?预先感谢。
答案 0 :(得分:0)
class App extends React.Component{
constructor(props){
super(props);
console.log(this.props.i);
}
render(){
return (
<div> { this.props.i } </div>
)
}
}
您应该在服务器控制台上看到该控制台
注意 渲染方法中的错字。 (缺少 {} )