“Schließen Sie MongoDB mit React JS an” Code-Antworten

So senden Sie Reagieren aus Daten in MongoDB

handleSubmit(){
    let databody = {
        "name": this.state.nameIn,
        "quote": this.state.quoteIn
    }

    return fetch('http://localhost:5002/stored', {
        method: 'POST',
        body: JSON.stringify(databody),
        headers: {
            'Content-Type': 'application/json'
        },
    })
    .then(res => res.json())
    .then(data => console.log(data)); 
}


render(){
    return (
        <div>
            <form onSubmit={this.handleSubmit}>
                <label>
                    Name
                    <input type="text" name="name" value={this.nameIn} onChange={this.handleNameChange}/>
                </label>
                <label>
                    quote
                    <input type="text" name="quote" value={this.quoteIn} onChange={this.handleQuoteChange}/>
                </label>
                <input type="submit" value="Add to DB" />
            </form> 
        </div>
    );
}
Creepy Crayfish

So senden Sie Reagieren aus Daten in MongoDB

app.post('/stored', (req, res) => {
    console.log(req.body);
    db.collection('quotes').insertOne(req.body, (err, data) => {
        if(err) return console.log(err);
        res.send(('saved to db: ' + data));
    })
});
Creepy Crayfish

Schließen Sie MongoDB mit React JS an

npx create-react-app foldername
Haddy Jasseh 180041160

Ähnliche Antworten wie “Schließen Sie MongoDB mit React JS an”

Fragen ähnlich wie “Schließen Sie MongoDB mit React JS an”

Weitere verwandte Antworten zu “Schließen Sie MongoDB mit React JS an” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen