我想要客戶端排序,使用戶能夠按不同的鍵進行排序。這些鍵只是整數。在React中更改渲染映射數組的排序鍵
現在,我打電話給我的排序函數映射功能前右:
.sort(function(a, b) {
return b.sortKey- a.sortKey;
}
當用戶按下一個按鈕,則SORTKEY應更改爲指定的值。這些都包含在一個反應組件中,而不是一個函數。我讀過一個組件上的屬性不應該被組件本身改變,那麼我將如何去改變按鈕按下的sortKey?
我的渲染功能包含兩個排序選項和列表:
render() {
return (
<div className="row">
<div className="col s12">
<button onClick={() => this.changeSortKey("yes")} style={{ marginRight: 5, marginTop: 5 }} className="btn">
Yes Votes
</button>
<button onClick={() => this.changeSortKey("no")} style={{ marginTop: 5 }} className="btn">
No Votes
</button>
</div>
{this.renderSurveys()}
</div>
);
}
的changeSortKey(Key)的功能會非常改變SORTKEY,然後重新呈現列表中,但我不知道如何使該列表再次在用戶點擊之後。
如果我只是提供一個已知鍵的排序功能,排序完美的作品。
編輯:從API獲取數據
export const fetchSurveys =() => async dispatch => {
const response = await axios.get("/api/surveys");
dispatch({ type: FETCH_SURVEYS, payload: response.data });
};
編輯:RenderSurveys輔助函數
renderSurveys() {
//custom helper method
return this.props.surveys
.sort(function(a, b) {
return b.yes - a.yes;
})
.map(survey => {
const data = [
{ text: "Yes", value: survey.yes },
{ text: "No", value: survey.no }
];
//reverse the array and then map over it, newest first
return (
<div className="col s6">
<div key={survey._id} className="card darken-1">
<div className="card-content">
<span className="card-title">{survey.title}</span>
<p>Sent On: {new Date(survey.dateSent).toLocaleDateString()}</p>
<p>
Last responded on:{" "}
{new Date(survey.lastResponded).toLocaleDateString()}
</p>
</div>
<div className="card-action">
<a href="#">Yes: {survey.yes}</a>
<a href="#">No: {survey.no}</a>
<BarChart width={100} height={70} data={data} />
<button
onClick={() => this.props.deleteSurvey(survey._id)}
className="btn-floating btn-large red right"
>
<i className="material-icons">clear</i>
</button>
</div>
</div>
</div>
);
});
}
你能對你如何實現你的密鑰更具體一點嗎? – EnriqueDev
我猜你沒有改變你的狀態,所以反應並不知道它需要更新用戶界面。看看[這個問題](https://stackoverflow.com/questions/30626030/can-you-force-a-react-component-to-rerender-without-calling-setstate),也許嘗試'forceUpdate()',或對值進行排序並將結果存儲在您的狀態中。 –
@EnriqueDev我的sortKey還沒有完全實現。我從使用redux的動作創建者處獲取JSON對象中的密鑰。 this.props。fetchSurveys(); – Leth