React JS - Uncaught TypeError: this.props.data.map ไม่ใช่ฟังก์ชัน


112

ฉันกำลังทำงานกับ reactjs และดูเหมือนจะไม่สามารถป้องกันข้อผิดพลาดนี้ได้เมื่อพยายามแสดงข้อมูล JSON (จากไฟล์หรือเซิร์ฟเวอร์):

Uncaught TypeError: this.props.data.map is not a function

ฉันได้ดู:

รหัสตอบสนองที่ขว้าง“ TypeError: this.props.data.map ไม่ใช่ฟังก์ชัน”

React.js this.props.data.map () ไม่ใช่ฟังก์ชัน

สิ่งเหล่านี้ไม่ได้ช่วยฉันแก้ไขปัญหา หลังจากโหลดหน้าของฉันฉันสามารถตรวจสอบได้ว่า this.data.props ไม่ได้กำหนด (และมีค่าเทียบเท่ากับออบเจ็กต์ JSON - สามารถโทรติดต่อได้window.foo) ดังนั้นดูเหมือนว่าจะไม่โหลดในเวลาที่เรียกโดย ConversationList ฉันจะแน่ใจได้อย่างไรว่าmapเมธอดกำลังทำงานกับข้อมูล JSON ไม่ใช่undefinedตัวแปร

var converter = new Showdown.converter();

var Conversation = React.createClass({
  render: function() {
    var rawMarkup = converter.makeHtml(this.props.children.toString());
    return (
      <div className="conversation panel panel-default">
        <div className="panel-heading">
          <h3 className="panel-title">
            {this.props.id}
            {this.props.last_message_snippet}
            {this.props.other_user_id}
          </h3>
        </div>
        <div className="panel-body">
          <span dangerouslySetInnerHTML={{__html: rawMarkup}} />
        </div>
      </div>
    );
  }
});

var ConversationList = React.createClass({
  render: function() {

    window.foo            = this.props.data;
    var conversationNodes = this.props.data.map(function(conversation, index) {

      return (
        <Conversation id={conversation.id} key={index}>
          last_message_snippet={conversation.last_message_snippet}
          other_user_id={conversation.other_user_id}
        </Conversation>
      );
    });

    return (
      <div className="conversationList">
        {conversationNodes}
      </div>
    );
  }
});

var ConversationBox = React.createClass({
  loadConversationsFromServer: function() {
    return $.ajax({
      url: this.props.url,
      dataType: 'json',
      success: function(data) {
        this.setState({data: data});
      }.bind(this),
      error: function(xhr, status, err) {
        console.error(this.props.url, status, err.toString());
      }.bind(this)
    });
  },
  getInitialState: function() {
    return {data: []};
  },
  componentDidMount: function() {
    this.loadConversationsFromServer();
    setInterval(this.loadConversationsFromServer, this.props.pollInterval);
  },
  render: function() {
    return (
      <div className="conversationBox">
        <h1>Conversations</h1>
        <ConversationList data={this.state.data} />
      </div>
    );
  }
});

$(document).on("page:change", function() {
  var $content = $("#content");
  if ($content.length > 0) {
    React.render(
      <ConversationBox url="/conversations.json" pollInterval={20000} />,
      document.getElementById('content')
    );
  }
})

แก้ไข: เพิ่มบทสนทนาตัวอย่าง json

หมายเหตุ - การโทรthis.props.data.conversationsยังส่งกลับข้อผิดพลาด:

var conversationNodes = this.props.data.conversations.map...

ส่งกลับข้อผิดพลาดต่อไปนี้:

Uncaught TypeError: ไม่สามารถอ่านคุณสมบัติ 'map' ของ undefined

นี่คือ Conversations.json:

{"user_has_unread_messages":false,"unread_messages_count":0,"conversations":[{"id":18768,"last_message_snippet":"Lorem ipsum","other_user_id":10193}]}

ฉันได้อัปเดตคำตอบแล้ว นอกจากนี้คำแนะนำบางประการ: เพิ่ม propTypes: {data: React.PropTypes.array} ใน ConversationList เพื่อตรวจสอบประเภทของข้อมูลและเพิ่ม componentWillUnmount: fn () ที่ "clearInterval" ช่วงเวลาใน ConversationBox
user120242

คำตอบ:


135

.mapฟังก์ชั่นจะใช้ได้เฉพาะในอาร์เรย์
ดูเหมือนว่าdataจะไม่อยู่ในรูปแบบที่คุณคาดหวังไว้ (เป็น {} แต่คุณคาดหวังว่าจะเป็น [])

this.setState({data: data});

ควรจะเป็น

this.setState({data: data.conversations});

ตรวจสอบว่า "ข้อมูล" ถูกตั้งค่าเป็นประเภทใดและตรวจสอบว่าเป็นอาร์เรย์

รหัสที่แก้ไขพร้อมคำแนะนำสองสามข้อ (การตรวจสอบความถูกต้องของ propType และ clearInterval):

var converter = new Showdown.converter();

var Conversation = React.createClass({
  render: function() {
    var rawMarkup = converter.makeHtml(this.props.children.toString());
    return (
      <div className="conversation panel panel-default">
        <div className="panel-heading">
          <h3 className="panel-title">
            {this.props.id}
            {this.props.last_message_snippet}
            {this.props.other_user_id}
          </h3>
        </div>
        <div className="panel-body">
          <span dangerouslySetInnerHTML={{__html: rawMarkup}} />
        </div>
      </div>
    );
  }
});

var ConversationList = React.createClass({
 // Make sure this.props.data is an array
  propTypes: {
    data: React.PropTypes.array.isRequired
  },
  render: function() {

    window.foo            = this.props.data;
    var conversationNodes = this.props.data.map(function(conversation, index) {

      return (
        <Conversation id={conversation.id} key={index}>
          last_message_snippet={conversation.last_message_snippet}
          other_user_id={conversation.other_user_id}
        </Conversation>
      );
    });

    return (
      <div className="conversationList">
        {conversationNodes}
      </div>
    );
  }
});

var ConversationBox = React.createClass({
  loadConversationsFromServer: function() {
    return $.ajax({
      url: this.props.url,
      dataType: 'json',
      success: function(data) {
        this.setState({data: data.conversations});
      }.bind(this),
      error: function(xhr, status, err) {
        console.error(this.props.url, status, err.toString());
      }.bind(this)
    });
  },
  getInitialState: function() {
    return {data: []};
  },

 /* Taken from 
    https://facebook.github.io/react/docs/reusable-components.html#mixins
    clears all intervals after component is unmounted
  */
  componentWillMount: function() {
    this.intervals = [];
  },
  setInterval: function() {
    this.intervals.push(setInterval.apply(null, arguments));
  },
  componentWillUnmount: function() {
    this.intervals.map(clearInterval);
  },

  componentDidMount: function() {
    this.loadConversationsFromServer();
    this.setInterval(this.loadConversationsFromServer, this.props.pollInterval);
  },
  render: function() {
    return (
      <div className="conversationBox">
        <h1>Conversations</h1>
        <ConversationList data={this.state.data} />
      </div>
    );
  }
});

$(document).on("page:change", function() {
  var $content = $("#content");
  if ($content.length > 0) {
    React.render(
      <ConversationBox url="/conversations.json" pollInterval={20000} />,
      document.getElementById('content')
    );
  }
})

33

สิ่งที่ใช้ได้ผลสำหรับฉันคือการแปลง props.data เป็นอาร์เรย์โดยใช้ data = Array.from(props.data); จากนั้นฉันสามารถใช้data.map()ฟังก์ชันได้


1
ประเภทของฉันคืออาร์เรย์อยู่แล้วเช่น typeOf แสดงสิ่งที่ถูกต้องความยาวก็ถูกต้อง แต่ก็ยังมีข้อผิดพลาดปรากฏขึ้น สิ่งนี้แก้ไขให้ฉัน ขอบคุณ!
user1829319

10

โดยทั่วไปคุณยังสามารถแปลงข้อมูลใหม่เป็นอาร์เรย์และใช้บางอย่างเช่น concat:

var newData = this.state.data.concat([data]);  
this.setState({data: newData})

รูปแบบนี้จะถูกนำมาใช้จริงใน app สิ่งที่ต้องทำสาธิตของ Facebook (ดูส่วน "การประยุกต์ใช้") ในhttps://facebook.github.io/react/


1
นี่เป็นเคล็ดลับ / เคล็ดลับที่เรียบร้อย แต่ฉันต้องการทราบว่าสิ่งนี้จะปกปิดปัญหาจริงและจะไม่แก้ OP ในกรณีของ OP สิ่งนี้ไม่สามารถช่วยได้เนื่องจากข้อมูลจะยังคงมีรูปแบบไม่ถูกต้อง (ไม่ใช่สิ่งที่ตั้งใจไว้) การสนทนามักจะจบลงด้วยการว่างเปล่าเนื่องจากอุปกรณ์ทั้งหมดจะเป็นโมฆะ ฉันไม่แนะนำให้ใช้เคล็ดลับนี้เว้นแต่คุณจะแน่ใจว่าข้อมูลของคุณอยู่ในรูปแบบที่คุณต้องการดังนั้นคุณจะไม่พบพฤติกรรมที่ไม่คาดคิดเมื่อข้อมูลที่ส่งคืนไม่ใช่สิ่งที่คุณคิดว่าควรจะเป็น
user120242

1

คุณไม่จำเป็นต้องมีอาร์เรย์ในการทำ

var ItemNode = this.state.data.map(function(itemData) {
return (
   <ComponentName title={itemData.title} key={itemData.id} number={itemData.id}/>
 );
});

มันต่างกันยังไง?
Amar Pathak

1

เกิดขึ้นเนื่องจากส่วนประกอบถูกแสดงผลก่อนที่ข้อมูล async จะมาถึงคุณควรควบคุมก่อนที่จะแสดงผล

ฉันแก้ไขด้วยวิธีนี้:

render() {
    let partners = this.props && this.props.partners.length > 0 ?
        this.props.partners.map(p=>
            <li className = "partners" key={p.id}>
                <img src={p.img} alt={p.name}/> {p.name} </li>
        ) : <span></span>;

    return (
        <div>
            <ul>{partners}</ul>
        </div>
    );
}
  • แผนที่ไม่สามารถแก้ไขได้เมื่อคุณสมบัติเป็นโมฆะ / ไม่ได้กำหนดดังนั้นฉันจึงทำการควบคุมก่อน

this.props && this.props.partners.length > 0 ?


0

คุณต้องแปลงวัตถุเป็นอาร์เรย์เพื่อใช้mapฟังก์ชัน:

const mad = Object.values(this.props.location.state);

ที่this.props.location.stateเป็นวัตถุที่ผ่านเข้ามาในองค์ประกอบอื่น


-2

ลองcomponentDidMount()ใช้อายุการใช้งานเมื่อดึงข้อมูล


5
ให้คำอธิบายด้วยเหตุใดจึงได้ผลและอย่างไร
Mittal Patel
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.