1. ホーム
  2. ジャバスクリプト

[解決済み】「SyntaxError: 予期しないトークン < in JSON at position 0".

2022-04-14 08:41:22

質問

Facebookのようなコンテンツフィードを扱うReactアプリコンポーネントで、エラーに遭遇しています。

Feed.js:94 undefined "parsererror" "SyntaxError.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データを引っ張ってくることに関係しているようなので、空白のdbから起動してみましたが、エラーは持続しています。このエラーは、Reactがサーバーに接続しようとし続け、最終的にブラウザをクラッシュさせるため、おそらく無限ループで呼び出されているようです。

EDIT

Chrome dev toolsとChrome REST clientでサーバーのレスポンスを確認したところ、データは適切なJSONであるようです。

EDIT 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を見ることができます。