为什么片刻无法识别.add方法?

时间:2018-04-20 20:41:41

标签: javascript momentjs

moment=require('moment'); 
const now= moment();     
const dateFormat1 = 'MMDDYYYY';
this.todaysdate = () => (`${now.format(dateFormat1)}`);
this.futuredate= () => (`${now.format(dateFormat1).add('days', 5)}`);

当我运行它时,我认为添加不是一个可识别的功能。数字Begindate工作正常。

1 个答案:

答案 0 :(得分:1)

string返回的format在其原型上没有add。尝试添加当下的时刻

now.add('days', 5).format(dateFormat1)