0
上午顯示日期數組。我必須選擇最新的日期過期數組。請建議我如何獲得最新的日期。Reactjs - 最新日期選擇
class SearchResultsItem extends React.Component {
render() {
return (
<tr onClick={ this.handleOpen } style={{fontsize: '10',cursor: 'pointer'}}>
<td>{ this.props.item.number }</td>
<td>{ this.props.item.name }</td>
<td>{ this.props.item.buyer_name }</td>
<td>{ this.props.item.order_date ? <Moment format="DD-MMM-YYYY">{ this.props.item.order_date }</Moment> : null }</td>
</tr>
<div className="col-sm-3">
<input name="date" disabled={ this.state.mode } type="date" value={ this.state.item.date } className="form-control" onChange={ this.handleInputChange } />
</div>
);
}
在項目的最後日期?比較什麼?請提供更多的代碼和更多關於你想在這裏實現的信息。 – DrunkDevKek
請找到完整的代碼,我必須從日期數組中獲取最新日期,並將其放置在字段中。 – Karthikeyan
你能告訴我們日期對象是什麼樣子嗎? – abdul