0

我正在尝试找出dayjs中的二传手。为此,我测试了以下代码:

let orwell = dayjs();
orwell.year(1984);
console.log(orwell.format("YYYY"));

我的期望是 1984 年将出现在控制台中。但事实并非如此,而是出现了 2021 年。

我究竟做错了什么?

4

2 回答 2

0

我认为我无法更改“dayjs”的对象。

但是,很容易将一个值作为字符串导入到 'dayjs()' 函数中。


useEffect(() => {
    let orwell = dayjs('1984').format('YYYY-MM-DD HH:mm');
    console.log('!!', orwell);
  }, []);
于 2021-03-24T04:58:44.307 回答
0

Dayjs 日期与时刻日期不同,是不可变的。这意味着 dayjs 的任何实例都不能被更改。年份设置器(或任何与此相关的方法)不会修改正在调用它的实例,而是返回一个新的 dayjs 对象。

尝试这个:

let now = dayjs();
let orwell = now.year(1984);
console.log(orwell.format("YYYY")); // should print 1984
console.log(now.format("YYYY"));    // should print the current year
于 2021-03-09T11:26:00.107 回答