ドキュメントはこのことについて不明瞭に見える、結果は(https://jsfiddle.net/andig2/b3xLzcu6/)が異なります。duration()。get(String)とduration()。as(String)の違いは何ですか? <a href="http://momentjs.com/docs/#/durations/as/" rel="nofollow noreferrer">http://momentjs.com/docs/#/durations/as/</a>で
var d = moment.duration(1, 'year');
console.log(d.asMonths());
console.log(d.as('month'));
console.log(d.get('months'));
戻り12,12,0代わり12,12,12
ありがとう、私はちょうどドキュメントからの違いをキャッチしませんでした。 – andig