,可以使用JavaScript的Array.sort()方法来实现。首先,将基金名称列表存储在一个数组中,然后使用sort()方法对数组进行排序,最后在组件中渲染排序后的基金名称列表。
以下是一个示例代码:
import React from 'react';
class FundList extends React.Component {
constructor(props) {
super(props);
this.state = {
fundNames: ['Fund C', 'Fund A', 'Fund B'],
};
}
sortFundNames() {
const sortedNames = [...this.state.fundNames].sort();
this.setState({ fundNames: sortedNames });
}
render() {
return (
<div>
<button onClick={() => this.sortFundNames()}>Sort Fund Names</button>
<ul>
{this.state.fundNames.map((name, index) => (
<li key={index}>{name}</li>
))}
</ul>
</div>
);
}
}
export default FundList;
在上述代码中,我们在组件的构造函数中初始化了一个基金名称列表的状态(fundNames)。然后,我们定义了一个sortFundNames()方法,该方法使用sort()方法对基金名称列表进行排序,并更新组件的状态。在render()方法中,我们渲染了一个按钮,当点击按钮时,会调用sortFundNames()方法来触发排序操作。最后,我们使用map()方法遍历排序后的基金名称列表,并将其渲染为一个无序列表。
这样,当用户点击按钮时,基金名称列表将按字母顺序进行排序并重新渲染在页面上。
领取专属 10元无门槛券
手把手带您无忧上云