Node.js
Weiterleiten von Ajax-Anforderungen mit Express.JS
Suche…
Eine einfache Implementierung von AJAX
Sie sollten die grundlegende Vorlage für den Express-Generator haben
Fügen Sie in app.js Folgendes hinzu (Sie können es überall nach var app = express.app()
hinzufügen):
app.post(function(req, res, next){
next();
});
Fügen Sie nun in Ihrer index.js-Datei (oder ihrer entsprechenden Übereinstimmung) Folgendes hinzu:
router.get('/ajax', function(req, res){
res.render('ajax', {title: 'An Ajax Example', quote: "AJAX is great!"});
});
router.post('/ajax', function(req, res){
res.render('ajax', {title: 'An Ajax Example', quote: req.body.quote});
});
Erstellen Sie eine Datei ajax.jade
/ ajax.pug
oder ajax.ejs
im Verzeichnis /views
, und fügen Sie ajax.jade
hinzu:
Für Jade / PugJS:
extends layout
script(src="http://code.jquery.com/jquery-3.1.0.min.js")
script(src="/magic.js")
h1 Quote: !{quote}
form(method="post" id="changeQuote")
input(type='text', placeholder='Set quote of the day', name='quote')
input(type="submit", value="Save")
Für EJS:
<script src="http://code.jquery.com/jquery-3.1.0.min.js"></script>
<script src="/magic.js"></script>
<h1>Quote: <%=quote%> </h1>
<form method="post" id="changeQuote">
<input type="text" placeholder="Set quote of the day" name="quote"/>
<input type="submit" value="Save">
</form>
Erstellen Sie nun in /public
eine Datei namens magic.js
$(document).ready(function(){
$("form#changeQuote").on('submit', function(e){
e.preventDefault();
var data = $('input[name=quote]').val();
$.ajax({
type: 'post',
url: '/ajax',
data: data,
dataType: 'text'
})
.done(function(data){
$('h1').html(data.quote);
});
});
});
Und da hast du es! Wenn Sie auf Speichern klicken, ändert sich das Angebot!
Modified text is an extract of the original Stack Overflow Documentation
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow