标签: reactjs
我正在尝试按字母顺序对道具的输出进行排序。
{ util.getDropDown( _.sortBy(util.Names(this.props.abc) ))}
_.sortBy(util.Names(this.props.abc) ) //我期待
_.sortBy(util.Names(this.props.abc) )
this.props.abc的输出需要按字母顺序排序
this.props.abc
我希望包含b,c,a to be a,b,c的下拉列表的输出,但是下拉列表保持不变。
b,c,a to be a,b,c