React.js + bootstrap-table仅在第一次加载时起作用,但转换会破坏表

时间:2015-05-12 01:31:51

标签: javascript twitter-bootstrap reactjs react-jsx bootstrap-table

使用http://bootstrap-table.wenzhixin.net.cn

这是我的组件,其中包含表格代码:

var Component = React.createClass({
  render: function() {
    return (
      <div className="col-sm-9 col-sm-offset-3 col-lg-10 col-lg-offset-2 main">
            <div className="row">
                <ol className="breadcrumb">
                    <li><a href="#"><span className="glyphicon glyphicon-home"></span></a></li>
                    <li className="active">Users</li>
                </ol>
            </div><!--/.row-->

            <div className="row">
                <div className="col-lg-12">
                    <h1 className="page-header">Tables</h1>
                </div>
            </div><!--/.row-->


            <div className="row">
                <div className="col-lg-12">
                    <div className="panel panel-default">
                        <div className="panel-heading">User List</div>
                        <div className="panel-body">
                            <table ref='table' data-toggle="table" data-url='http://localhost:3000/admin/users'  data-show-refresh="true" data-show-toggle="true" data-show-columns="true" data-search="true" data-select-item-name="toolbar1" data-pagination="true" data-sort-name="name" data-sort-order="desc">
                                <thead>
                                    <tr>
                          <th data-field="firstName">First Name</th>
                          <th data-field="lastName">Last Name</th>
                          <th data-field="level">Level</th>
                          <th data-field="verified">Verified</th>
                                    </tr>
                                </thead>
                            </table>
                        </div>
                    </div>
                </div>
            </div><!--/.row-->

        </div><!--/.main-->
    );
  }
});

如果我直接加载包含此表的页面,它可以正常工作。但是,如果我使用react-router从其他页面转换到此页面,则表格不会加载。看起来好像加载bootstrap-table.js已经卸载了。

3 个答案:

答案 0 :(得分:5)

它是React.js的Bootstrap table component

也许你可以试试!!

答案 1 :(得分:2)

那是因为该表不是React感知组件!

这是因为在bootstrap-table初始化所有表之后创建了表。当您将第三方非React组件与React一起使用时,这是一个问题,因为React的工作方式不同。 React仅在需要呈现时才呈现组件。这是您的页面如此高效的原因之一。它没有不必要的渲染。但是这与第三方非React组件有一个缺点,因为这些组件假设您在页面加载时加载了所有内容,并且在DOM更改后不再进行任何更改。这些第三方非React组件不了解React的生命周期。

为了解决这个问题,React有一个名为componentDidMount的生命周期方法,一旦在屏幕上呈现整个组件,就会调用它。您可以在此处插入第三方代码的初始化程序。所以你需要做的就是不要使用&#34;数据切换&#34;不再而是直接调用Javascript(详见此处:http://bootstrap-table.wenzhixin.net.cn/getting-started/#usage-via-javascript)。将代码添加到componentDidMount后,每次呈现组件时都会调用代码。当您更改页面或从页面组件中删除组件时,将调用WillUnmount。在这里,通过调用$(node).bootstrapTable(&#39; destroy&#39;)并释放内存来清理初始化的bootstrap-table。

所以对代码进行这些更改(更改会突出显示&lt;&lt;&lt;&lt;&lt; here):

var Component = React.createClass({


  componentDidMount: function() {              <<<< here
    var node = this.refs.table.getDOMNode();   <<<< here
    $(node).bootstrapTable();                  <<<< here

  },

  componentWillUnmount: function() {          <<<< here
    var node = this.refs.table.getDOMNode();  <<<< here
    $(node).bootstrapTable('destroy');        <<<< here
  },


  render: function() {
    return (
             ... code ...
             <table ref='table' etc..         <<<<< here - remove data-toggle and use only ref
             ... code ...
    );
  }
});

答案 2 :(得分:1)

此表由外部库修改,无法与React一起使用。

尝试使用https://facebook.github.io/fixed-data-table/

之类的替代表格

或查看是否有效

var Component = React.createClass({
  shouldComponentUpdate: function() {
    return false;
  },
  render: function() {