suchen

Heim  >  Fragen und Antworten  >  Hauptteil

Javascript – So kopieren Sie Moment

const a = moment(); 
console.log('a', a); // 4月24日
const b = a.add(1, 'days');
console.log('a', a);// 4月25日
console.log('b', b);// 4月25日

Wenn Sie eine Kopie von a erstellen, während b der 25. April ist, bleibt a unverändert.

淡淡烟草味淡淡烟草味2749 Tage vor660

Antworte allen(2)Ich werde antworten

  • phpcn_u1582

    phpcn_u15822017-05-16 13:44:33

    其实moment本身就支持你说的功能, 只需要把想复制的变量放到moment中再生成一个就可以了,两个就不会相互影响。

    const a = moment(); 
    console.log('a', a); // 4月24日
    const b = moment(a).add(1, 'days');   //moment一下,完成对a的复制
    console.log('a', a);// 4月24日
    console.log('b', b);// 4月25日

    Antwort
    0
  • 迷茫

    迷茫2017-05-16 13:44:33

    const a_clone = a.clone();

    Antwort
    0
  • StornierenAntwort