使用this.props.match.params.id是否安全?

时间:2019-04-08 16:45:33

标签: javascript reactjs redux

我是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) {
    ..............
    ..............

0 个答案:

没有答案