admin管理员组文章数量:1349240
I am trying to calculate and display number of days between two dates in my React app.
However, while doing so, I am having issues converting the date from my date picker to a string? Do I even need to convert the date to a string before calculating? Here is what I have.
var numberOfDays = function({props.startDatePicker},{props.endDatePicker}){
return {
moment({props.startDatePicker}.diff({props.endDatePicker}, 'days'));
};
}
What am I doing wrong? Where should I place this code?
I am trying to calculate and display number of days between two dates in my React app.
However, while doing so, I am having issues converting the date from my date picker to a string? Do I even need to convert the date to a string before calculating? Here is what I have.
var numberOfDays = function({props.startDatePicker},{props.endDatePicker}){
return {
moment({props.startDatePicker}.diff({props.endDatePicker}, 'days'));
};
}
What am I doing wrong? Where should I place this code?
Share Improve this question edited Aug 2, 2017 at 18:02 user7605325 asked Aug 2, 2017 at 18:00 UtsabUtsab 2092 gold badges5 silver badges12 bronze badges 1- 1 I'd start by making sure your syntax is right. What you've posted here is not valid syntax. – Mike Cluck Commented Aug 2, 2017 at 18:04
1 Answer
Reset to default 7You need to call .diff()
on a moment object. Try moving the close parenthesis around {props.startDatePicker}
moment({props.startDatePicker}).diff({props.endDatePicker}, 'days');
https://momentjs./docs/#/displaying/difference/
本文标签: javascriptCalculate and display difference between two dates using momentjs in ReactjsStack Overflow
版权声明:本文标题:javascript - Calculate and display difference between two dates using moment.js in React.js? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743859385a2551454.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论