So fügen Sie CsrfToken hinzu, wenn Sie eine Ajax-Anfrage in Laravel mit Vue-Ressource senden,
Das Folgende ist eine Demo der Verwendung von formData zum Senden einer Ajax-Anfrage:
{
var formData = new FormData();
// append string
formData.append('foo', 'bar');
// append Blob/File object
formData.append('pic', fileInput, 'mypic.jpg');
// POST /someUrl
this.$http.post('/someUrl', formData).then((response) => {
// success callback
}, (response) => {
// error callback
});
}
Beim obigen Code tritt ein CsrfToken-Problem auf. Wie soll ich es hinzufügen?
http://docs.spring.io/spring-...
最下面