我是React和Redux的新手,我正在尝试使用this.props.match.params.id
componentDidMount()
{
this.props.dispatch(userActions.getAll(this.props.match.params.id));
}
....................
<button type="button"
onClick={() => dispatch({ type: "ADD_NEW_POST",
id: this.props.match.params.id })} >Save
</button>
我的问题是,我对CRUD应用程序使用this.props.match.params.id
有多安全?
编辑
我的链接为<Link to={`/addpost/${item.id}`}>Rooms</Link>
,然后我们使用getAll(this.props.match.params.id)
并使用上述代码提交
在 nodejs 中,
router.post('/addpost/:id', (req, res, next) =>{
Users.findById(req.params.id, function (err, data) {
..............
..............