“语法错误:意外的令牌 < JSON 中的位置 0”

IT技术 javascript json reactjs
2021-01-10 17:24:06

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

Feed.js:94 未定义的“解析器错误”“语法错误:意外的令牌 < JSON 中的位置 0

我遇到了类似的错误,结果证明是渲染函数中 HTML 中的拼写错误,但这里似乎并非如此。

更令人困惑的是,我将代码回滚到较早的已知工作版本,但仍然出现错误。

饲料.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.

我正在端口 3000 上运行 webpack 热重载服务器,其中 express 应用程序在端口 3001 上运行以返回后端数据。令人沮丧的是,这在我上次工作时正常工作,但找不到我可能会更改以破坏它的内容。

6个回答

错误消息的措辞与您在运行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。

@ Mimi314159, console.logconsole.warn并且console.error将所有写入到控制台。但是,控制台通常会提供日志过滤器选项,因此请确保根据您的喜好启用或禁用这些选项。
2021-03-10 17:24:06
感谢您提供额外的调试语句,尽管我需要使用console.warn(jqxhr.responseText). 这对诊断我的问题非常有帮助。
2021-03-20 17:24:06
就我而言,发生了 PHP 错误,导致服务器返回 HTML 而不是有效的 JSON。
2021-03-28 17:24:06
谢谢,我这样做了,你是对的——react 正在轮询错误的 url 并返回 index.html 的内容。我就是不知道为什么。
2021-04-02 17:24:06
您还可以进入开发人员设置 -> 网络选项卡以查看您实际获得的响应。当您在同一服务器(例如,本地主机)上运行后端和前端时会发生这种情况。要解决此问题,请在package.json您的React根项目文件夹中添加以下行:"proxy": "http://localhost:5000" , (或您的端口,而不是5000您想要返回的请求)。
2021-04-08 17:24:06

您正在从服务器接收 HTML(或 XML),但dataType: json它告诉 jQuery 解析为 JSON。检查 Chrome 开发工具中的“网络”选项卡以查看服务器响应的内容。

@AVI 我相信您必须在资源类中指定 MIME 类型。(例如)@Produces(MediaType.APPLICATION_JSON)
2021-03-19 17:24:06
我查了一下,它似乎正在返回格式正确的 json。这是响应头: Access-Control-Allow-Origin:* Cache-Control:no-cache Content-Length:2487 Content-Type:application/json; charset=utf-8 日期:2016 年 5 月 17 日星期二 15:34:00 GMT ETag:W/"9b7-yi1/G0RRpr0DlOVc9u7cMw" X-Powered-By:Express
2021-04-03 17:24:06

这最终成为我的权限问题。我试图访问一个我没有使用 cancan 授权的 url,所以该 url 被切换到users/sign_in. 重定向的 url 响应 html,而不是 json。html 响应中的第一个字符是<.

我有同样的,虽然在 ASP.NET MVC 中。对于其他 .NET 用户,我忘记用 [AllowAnonymous] 属性装饰我的操作,因此框架试图返回 HTML 中未经授权的错误,该错误导致我的 AJAX 调用崩溃。
2021-03-31 17:24:06

我遇到了这个错误“SyntaxError: Unexpected token m in JSON at position”,其中标记“m”可以是任何其他字符。

事实证明,当我使用 RESTconsole 进行数据库测试时,我错过了 JSON 对象中的双引号之一,如 {"name: "math"},正确的应该是 {"name": "math"}

我花了很多精力才弄清楚这个笨拙的错误。我担心其他人会遇到类似的无赖。

就我而言,我正在运行这个 webpack,结果是本地 node_modules 目录中的某个地方出现了一些损坏。

rm -rf node_modules
npm install

...足以让它再次正常工作。

与此同时,我尝试删除 package-lock.json。然后它对我有用。
2021-03-19 17:24:06