W komponencie aplikacji React, który obsługuje kanały informacyjne podobne do Facebooka, pojawia się błąd:
Feed.js: 94 undefined „parsererror” „Błąd składni: Nieoczekiwany token <w JSON na pozycji 0
Wystąpił podobny błąd, który okazał się literówką w kodzie HTML w ramach funkcji renderowania, ale tutaj chyba tak nie jest.
Co bardziej mylące, przywróciłem kod do wcześniejszej, znanej, działającej wersji i nadal pojawia się błąd.
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
W narzędziach programistycznych Chrome wydaje się, że błąd pochodzi z tej funkcji:
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)
});
},
z console.error(this.props.url, status, err.toString()
podkreśloną linią .
Ponieważ wygląda na to, że błąd ma coś wspólnego z pobieraniem danych JSON z serwera, próbowałem zacząć od pustej bazy danych, ale błąd nadal występuje. Błąd wydaje się być wywoływany w nieskończonej pętli, ponieważ React ciągle próbuje połączyć się z serwerem i ostatecznie zawiesza przeglądarkę.
EDYTOWAĆ:
Sprawdziłem odpowiedź serwera za pomocą narzędzi programistycznych Chrome i klienta Chrome REST, a dane wydają się być poprawne JSON.
EDYCJA 2:
Wygląda na to, że chociaż zamierzony punkt końcowy interfejsu API rzeczywiście zwraca poprawne dane i format JSON, program React odpytuje http://localhost:3000/?_=1463499798727
zamiast oczekiwanego http://localhost:3001/api/threads
.
Korzystam z serwera ponownego ładowania pakietu WebPack na porcie 3000 z aplikacją ekspresową działającą na porcie 3001, aby zwrócić dane zaplecza. Frustrujące jest tutaj to, że działało to poprawnie, kiedy ostatni raz nad tym pracowałem i nie mogę znaleźć tego, co mógłbym zmienić, aby to zepsuć.
JSON.parse("<foo>")
- ciąg JSON (którego oczekujesz dataType: 'json'
) nie może zaczynać się <
.
NODE_ENV
. Zobacz to: github.com/facebookincubator/create-react-app/blob/master/…