In un componente dell'app React che gestisce feed di contenuti simili a Facebook, sto riscontrando un errore:
Feed.js: 94 non definito "parsererror" "SintassiError: token imprevisto <in JSON in posizione 0
Mi sono imbattuto in un errore simile che si è rivelato un errore di battitura nell'HTML all'interno della funzione di rendering, ma qui non sembra essere il caso.
Più confusamente, ho riportato il codice a una versione precedente e funzionante e sto ancora ricevendo l'errore.
Feed.js:
import React from 'react';
var ThreadForm = React.createClass({
getInitialState: function () {
return {author: '',
text: '',
included: '',
victim: ''
}
},
handleAuthorChange: function (e) {
this.setState({author: e.target.value})
},
handleTextChange: function (e) {
this.setState({text: e.target.value})
},
handleIncludedChange: function (e) {
this.setState({included: e.target.value})
},
handleVictimChange: function (e) {
this.setState({victim: e.target.value})
},
handleSubmit: function (e) {
e.preventDefault()
var author = this.state.author.trim()
var text = this.state.text.trim()
var included = this.state.included.trim()
var victim = this.state.victim.trim()
if (!text || !author || !included || !victim) {
return
}
this.props.onThreadSubmit({author: author,
text: text,
included: included,
victim: victim
})
this.setState({author: '',
text: '',
included: '',
victim: ''
})
},
render: function () {
return (
<form className="threadForm" onSubmit={this.handleSubmit}>
<input
type="text"
placeholder="Your name"
value={this.state.author}
onChange={this.handleAuthorChange} />
<input
type="text"
placeholder="Say something..."
value={this.state.text}
onChange={this.handleTextChange} />
<input
type="text"
placeholder="Name your victim"
value={this.state.victim}
onChange={this.handleVictimChange} />
<input
type="text"
placeholder="Who can see?"
value={this.state.included}
onChange={this.handleIncludedChange} />
<input type="submit" value="Post" />
</form>
)
}
})
var ThreadsBox = React.createClass({
loadThreadsFromServer: function () {
$.ajax({
url: this.props.url,
dataType: 'json',
cache: false,
success: function (data) {
this.setState({data: data})
}.bind(this),
error: function (xhr, status, err) {
console.error(this.props.url, status, err.toString())
}.bind(this)
})
},
handleThreadSubmit: function (thread) {
var threads = this.state.data
var newThreads = threads.concat([thread])
this.setState({data: newThreads})
$.ajax({
url: this.props.url,
dataType: 'json',
type: 'POST',
data: thread,
success: function (data) {
this.setState({data: data})
}.bind(this),
error: function (xhr, status, err) {
this.setState({data: threads})
console.error(this.props.url, status, err.toString())
}.bind(this)
})
},
getInitialState: function () {
return {data: []}
},
componentDidMount: function () {
this.loadThreadsFromServer()
setInterval(this.loadThreadsFromServer, this.props.pollInterval)
},
render: function () {
return (
<div className="threadsBox">
<h1>Feed</h1>
<div>
<ThreadForm onThreadSubmit={this.handleThreadSubmit} />
</div>
</div>
)
}
})
module.exports = ThreadsBox
Negli strumenti di sviluppo di Chrome, l'errore sembra provenire da questa funzione:
loadThreadsFromServer: function loadThreadsFromServer() {
$.ajax({
url: this.props.url,
dataType: 'json',
cache: false,
success: function (data) {
this.setState({ data: data });
}.bind(this),
error: function (xhr, status, err) {
console.error(this.props.url, status, err.toString());
}.bind(this)
});
},
con la linea console.error(this.props.url, status, err.toString()
sottolineata.
Poiché sembra che l'errore abbia qualcosa a che fare con l'estrazione dei dati JSON dal server, ho provato a partire da un db vuoto, ma l'errore persiste. L'errore sembra essere chiamato in un ciclo infinito presumibilmente mentre React tenta continuamente di connettersi al server e alla fine si arresta in modo anomalo nel browser.
MODIFICARE:
Ho verificato la risposta del server con gli strumenti di sviluppo di Chrome e il client Chrome REST e i dati sembrano essere JSON corretti.
MODIFICA 2:
Sembra che sebbene l'endpoint API previsto stia effettivamente restituendo i dati e il formato JSON corretti, React esegue il polling http://localhost:3000/?_=1463499798727
invece del previsto http://localhost:3001/api/threads
.
Sto eseguendo un server di ricarica rapida Webpack sulla porta 3000 con l'app Express in esecuzione sulla porta 3001 per restituire i dati di back-end. La cosa frustrante qui è che questo funzionava correttamente l'ultima volta che ci ho lavorato e non riesco a trovare cosa avrei potuto cambiare per romperlo.
JSON.parse("<foo>")
: una stringa JSON (che ti aspetti con dataType: 'json'
) non può iniziare <
.
NODE_ENV
. Vedi questo: github.com/facebookincubator/create-react-app/blob/master/…