ในองค์ประกอบแอป React ที่จัดการฟีดเนื้อหาคล้าย Facebook ฉันพบข้อผิดพลาด:
Feed.js: 94 undefined "parsererror" "SyntaxError: โทเค็นที่ไม่คาดคิด <ใน JSON ที่ตำแหน่ง 0
ฉันพบข้อผิดพลาดที่คล้ายกันซึ่งกลายเป็นคำผิดใน HTML ภายในฟังก์ชันการแสดงผล แต่ดูเหมือนจะไม่เป็นเช่นนั้น
ยิ่งไปกว่านั้นฉันรีดรหัสกลับไปเป็นเวอร์ชันก่อนหน้าซึ่งเป็นที่รู้จักและยังคงได้รับข้อผิดพลาด
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
ในเครื่องมือสำหรับนักพัฒนาซอฟต์แวร์ Chrome ข้อผิดพลาดน่าจะมาจากฟังก์ชั่นนี้:
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)
});
},
กับบรรทัดที่console.error(this.props.url, status, err.toString()
ขีดเส้นใต้
เนื่องจากดูเหมือนว่าข้อผิดพลาดน่าจะเกี่ยวข้องกับการดึงข้อมูล JSON จากเซิร์ฟเวอร์ฉันจึงลองเริ่มจากฐานข้อมูลเปล่า แต่ข้อผิดพลาดยังคงอยู่ ดูเหมือนว่าข้อผิดพลาดจะถูกเรียกในวงวนไม่สิ้นสุดเนื่องจาก React พยายามเชื่อมต่อกับเซิร์ฟเวอร์อย่างต่อเนื่องและในที่สุดก็เกิดปัญหาเบราว์เซอร์
แก้ไข:
ฉันได้ตรวจสอบการตอบสนองของเซิร์ฟเวอร์ด้วยเครื่องมือพัฒนา Chrome และไคลเอนต์ Chrome REST และข้อมูลดูเหมือนจะเป็น JSON ที่เหมาะสม
แก้ไข 2:
ปรากฏว่าแม้ว่าจุดปลายทาง API ที่ตั้งใจส่งคืนข้อมูลและรูปแบบ JSON ที่ถูกต้องจริง ๆ แล้ว React กำลังทำการสำรวจhttp://localhost:3000/?_=1463499798727
มากกว่าที่คาดhttp://localhost:3001/api/threads
ไว้
ฉันใช้เซิร์ฟเวอร์ hot-reload ของ webpack บนพอร์ต 3000 ด้วยแอปด่วนที่ทำงานบนพอร์ต 3001 เพื่อส่งคืนข้อมูลแบ็กเอนด์ สิ่งที่น่าผิดหวังคือที่นี่ทำงานได้อย่างถูกต้องในครั้งสุดท้ายที่ฉันทำงานและไม่สามารถหาสิ่งที่ฉันสามารถเปลี่ยนแปลงเพื่อทำลายมันได้
JSON.parse("<foo>")
- สตริง JSON (ซึ่งคุณคาดหวังด้วยdataType: 'json'
) ไม่สามารถเริ่มต้น<
ได้
NODE_ENV
พร็อกซี่คำขอขึ้นอยู่กับคุณ ดูสิ่งนี้: github.com/facebookincubator/create-react-app/blob/master/…