在Rails中,我在页面上有一组Bootstrap选项卡,每个选项卡上都有一个React组件,即:
<div id="tab-1" class="tab-pane">
...
<%= react_component('PeopleWidget', person_id: @person.id) %>
...
</div>
<div id="tab-2" class="tab-pane">
...
<%= react_component('ContentWidget', content_id: @content.id) %>
...
</div>
组件:
现在:
PeopleWidget
可以在后端更新某人的权限ContentWidget
更改为只读行为我的战术解决方案是:
tab-2
时的Bootstrap事件中,我想手动触发ContentWidget
渲染。ContentWidget
将有适当的更新行为这感觉就像一个解决方法,但我有一个时间表:)
我无法弄清楚如何手动触发ContentWidget
重新渲染。这可能吗?
答案 0 :(得分:3)
您可以使用Flux的策略:您可以在组件中设置事件侦听器,当事件发生时,使用forceUpdate
重新渲染。
在Flux中,组件会监听商店。在您的情况下,您可以收听events triggered by Bootstrap tabs。
例如,要在显示选项卡时处理事件:
var ContentWidget = React.createClass({
_handleTabShow: function() {
this.forceUpdate()
// any other reload/re-render code here, too
},
componentWillMount: function() {
// start listening for show event:
$('#tab-2').on('shown.bs.tab', this._handleTabShow)
},
componentWillUnmount: function() {
// clean up the handler when the component is removed:
$('#tab-2').off('shown.bs.tab', this._handleTabShow)
}
// The rest of your component code
// goes here....
})
答案 1 :(得分:0)
您可以使用forceUpdate重新渲染组件