Daniel Deutsch
Daniel Deutsch
As there are already issues regarding installation which are not resolved. Here is another one. I am using **Python 3.6.6** and **Pipenv** for installing. It would be nice if it...
currently it is not gitignored but it should be
in routes: ```javascript router.post('/api/polls/:pID/new', (req, res, next) => { req.poll.answers.push(req.body); req.poll.save((err, doc) => { if (err) return next(err); return res.status(201).json(doc); }); }); ``` it should be something like (but not...
currently @singlePollCon: ```javascript componentWillReceiveProps(nextProps) { setTimeout(() => { axios .get(`/api/polls/${this.props.match.params.id}`) .then((res) => { this.setState({ poll: res.data, fetched: true }); }) .catch((err) => { console.log(err); }); }, 100); } ```
https://stackoverflow.com/questions/27928372/react-router-urls-dont-work-when-refreshing-or-writting-manually
is there one implemented with twitter? joi validate can be an option