标签: reactjs
如何在警告框中显示道具或状态? 当我们在控制台上打印时,如何在警告框中显示它。
alert('Props',this.props);
答案 0 :(得分:2)
警报只需要一个参数。如果你想做类似的事情你应该写:
alert('props' + this.props);
答案 1 :(得分:0)
您需要使用JSON.stringify将其转换为字符串。
alert('props:'+ JSON.stringify(this.props));