我想有条件地显示和隐藏这个按钮组,这取决于从父组件传入的内容,看起来像这样:
<TopicNav showBulkActions={this.__hasMultipleSelected} />
__hasMultipleSelected: function() {
return false; //return true or false depending on data
}
var TopicNav = React.createClass({
render: function() {
return (
<div className="row">
<div className="col-lg-6">
<div className="btn-group pull-right {this.props.showBulkActions ? 'show' : 'hidden'}">
<button type="button" className="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-expanded="false">
Bulk Actions <span className="caret"></span>
</button>
<ul className="dropdown-menu" role="menu">
<li><a href="#">Merge into New Session</a></li>
<li><a href="#">Add to Existing Session</a></li>
<li className="divider"></li>
<li><a href="#">Delete</a></li>
</ul>
</div>
</div>
</div>
);
}
});
然而,{this.props。showBulkActions吗?'show': 'hidden'}。我做错什么了吗?
<div className={['foo', condition && 'bar'].filter(Boolean).join(' ')} />
.filter(Boolean)从数组中删除“错误”值。由于类名必须是字符串,因此任何字符串以外的内容都不会包含在新的筛选数组中。
console.log(['foo', true && 'bar'].filter(Boolean)。Join (' '))
console.log(['foo', false && 'bar'].filter(布尔值)。Join (' '))
上面写为函数:
const cx = (...list) => list.filter(Boolean).join(' ')
// usage:
<div className={cx('foo', condition && 'bar')} />
var cx = (.. list) => list.filter(布尔兰)。join (' ')
1、log (ex(’foo’&&游戏机’bar’,1 &&’baz’))
log (ex(’foo’游戏机,0 &&’bar’,1 &&’baz’))
log (ex(’foo’游戏机,0 &&’bar’,0 &&’baz’))
你可以使用这个npm包。它处理所有事情,并基于变量或函数为静态类和动态类提供选项。
// Support for string arguments
getClassNames('class1', 'class2');
// support for Object
getClassNames({class1: true, class2 : false});
// support for all type of data
getClassNames('class1', 'class2', null, undefined, 3, ['class3', 'class4'], {
class5 : function() { return false; },
class6 : function() { return true; }
});
<div className={getClassNames('show', {class1: true, class2 : false})} /> // "show class1"
<div className={['foo', condition && 'bar'].filter(Boolean).join(' ')} />
.filter(Boolean)从数组中删除“错误”值。由于类名必须是字符串,因此任何字符串以外的内容都不会包含在新的筛选数组中。
console.log(['foo', true && 'bar'].filter(Boolean)。Join (' '))
console.log(['foo', false && 'bar'].filter(布尔值)。Join (' '))
上面写为函数:
const cx = (...list) => list.filter(Boolean).join(' ')
// usage:
<div className={cx('foo', condition && 'bar')} />
var cx = (.. list) => list.filter(布尔兰)。join (' ')
1、log (ex(’foo’&&游戏机’bar’,1 &&’baz’))
log (ex(’foo’游戏机,0 &&’bar’,1 &&’baz’))
log (ex(’foo’游戏机,0 &&’bar’,0 &&’baz’))