在处理类似Facebook的内容提要的React应用程序组件中,我遇到了一个错误:

feed.js:94未定义的" parserError"" syntaxerror:意外的令牌<in 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 Developer工具中,错误似乎来自此功能:

 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 数据有关,因此我尝试从空白数据库开始,但错误仍然存​​在。

编辑:

我已经使用Chrome Dev工具和Chrome REST客户端检查了服务器响应,并且数据似乎是合适的JSON。

编辑2:

看来,尽管预期的API端点确实是返回正确的JSON数据和格式,但React仍在进行轮询http://localhost:3000/?_=1463499798727而不是预期的http://localhost:3001/api/threads

我正在端口3000上运行WebPack热线装置服务器,而端口3001上的Express应用程序以返回后端数据。令人沮丧的是,这是我上次工作时正常工作的,找不到我可能会改变它来打破它的东西。

答案

错误消息的措辞对应于您运行时从Google Chrome获得的内容JSON.parse('<...')。我知道您说服务器正在设置Content-Type:application/json,但我被引导相信回应身体实际上是HTML。

Feed.js:94 undefined "parsererror" "SyntaxError: Unexpected token < in JSON at position 0"

与线console.error(this.props.url, status, err.toString())下划线。

err实际上被扔在里面jQuery,并作为变量传递给您err。线条下划线的原因仅仅是因为那是您记录的地方。

我建议您添加到记录中。看实际xhr(xmlhttprequest)属性要了解有关响应的更多信息。尝试添加console.warn(xhr.responseText)您很可能会看到正在接收的 HTML。

来自: stackoverflow.com