React equivalent for ng-repeat

后端 未结 5 1131
梦谈多话
梦谈多话 2021-02-06 21:43

I am new to React.js. I am trying to bind data arrays. I am looking for the equivalent of ng-repeat, but i can\'t find it inside documentation.

e.g:

var         


        
相关标签:
5条回答
  • 2021-02-06 22:14

    In your render function inside a react component you can do this:

    var data =  ['red', 'green', 'blue'];
    var dataComponent = [];
    data.forEach(function (dataValue) {
        dataComponent.push(<div> {dataValue} </div>);
    });
    

    And now you can return the dataComponent.

    0 讨论(0)
  • 2021-02-06 22:27

    Here is an example using ES6, and a stateless component.

    The below code demonstrates creating a menu by looping through a list of menu items.

    import React from 'react';
    import Menu from 'material-ui/lib/menus/menu';
    import MenuItem from 'material-ui/lib/menus/menu-item';
    
    
    const menuItems = [
        {route: '/questions', text: 'Questions'},
        {route: '/jobs', text: 'Jobs'},
        {route: '/tags', text: 'Tags'},
        {route: '/users', text: 'Users'},
        {route: '/badges', text: 'Badges'}
        {route: '/questions/new', text: 'Ask Question'}
    
    ].map((item, index) => <MenuItem key={index} primaryText={item.text} value={item.route} />);
    
    
    const Sidebar = ({history}) => (
        <Menu
            autoWidth={false}
            onItemTouchTap={(e, child) => history.push(child.props.value)}
        >
            {menuItems}
        </Menu>
    );
    
    
    export default Sidebar;
    

    Basically what we're doing is just pure javascript iteration utilizing Array.map.

    0 讨论(0)
  • 2021-02-06 22:30

    Should just be:

    {data.map(i => <div>{i}</div>)}
    
    0 讨论(0)
  • 2021-02-06 22:31

    In React, you just write the necessary JavaScript (and potentially build it into a reusable control as you'll see). It's very prescriptive and easy to do once you learn the basic patterns (and how they differ from AngularJS).

    So, in the render function, you'd need to iterate through the list. In the example below, I've used map, but you could use other iterators as needed.

    var List = React.createClass({
        render: function() {
            return (<div>
            { this.props.data.map(function(item) {
                    return <div>{item}</div>
                })
            }
            </div>);
        }
    });
    
    var data =  ['red', 'green', 'blue'];
    
    React.render(<List data={ data }  />, document.body);
    

    Here it is in use.

    And, as you can see, you can quickly build a reusable component that can "repeat" through the list.

    0 讨论(0)
  • 2021-02-06 22:32

    To perform the same task as ng-repeat in React you just need to think natively. Under the hood ng-repeat is just using a native Javascript iterator. You can use the same sort of native iterator directly in React. For example, I`ll use Array.map:

    var RepeatModule = React.createClass({
      getInitialState: function() {
        return { items: [] } 
      }, 
      render: function() {
    
        var listItems = this.props.items.map(function(item) {
          return (
            <li key={item.name}> 
              <a href={item.link}>{item.name}</a> 
            </li> 
          ); 
        }); 
    
        return (
          <div> 
            <ul> 
              {listItems} 
            </ul> 
          </div> 
        ); 
      } 
    });
    

    I got the above example from http://angulartoreact.com/ng-repeat-react-equivalent . The site has more examples of React equivaents to Angular directives.

    0 讨论(0)
提交回复
热议问题