moment().toString()方法用于返回人类可读的 Moment 对象的英文字符串。它类似于原生的 Date 对象toString()方法。日期返回包含工作日、月、日、年、时间和时区偏移量。
用法:
moment().toString();
Parameters: 该方法不接受任何参数:
返回值:此方法以字符串形式返回 Moment。
注意:这在普通的 Node.js 程序中不起作用,因为它需要全局安装或在项目目录中安装外部moment.js 库。
Moment.js 可以使用以下命令安装:
moment模块的安装:
npm install moment
以下示例将演示 Moment.js moment().toString() 方法。
示例 1:
Javascript
const moment = require('moment');
let momentOne = moment();
console.log(
"MomentOne toString():", momentOne.toString()
)
let momentTwo = moment("01-10-2022", "MM-DD-YYYY");
console.log(
"MomentTwo toString():", momentTwo.toString()
)
let momentThree = moment("05:15:44", "hh:mm:ss");
console.log(
"MomentThree toString():", momentThree.toString()
)
输出:
MomentOne toString(): Tue Jun 28 2022 02:23:53 GMT+0530 MomentTwo toString(): Mon Jan 10 2022 00:00:00 GMT+0530 MomentThree toString(): Tue Jun 28 2022 05:15:44 GMT+0530
示例 2:
Javascript
const moment = require('moment');
let moment1 = moment().year(2010);
console.log(
"Moment1 toString():", moment1.toString()
)
let moment2 = moment1.add(10, 'days');
console.log(
"Moment2 toString():", moment2.toString()
)
let moment3 = moment2.add(20, 'hours');
console.log(
"Moment3 toString():", moment3.toString()
)
输出:
Moment1 toString(): Mon Jun 28 2010 02:17:48 GMT+0530 Moment2 toString(): Thu Jul 08 2010 02:17:48 GMT+0530 Moment3 toString(): Thu Jul 08 2010 22:17:48 GMT+0530
参考: https://momentjs.com/docs/#/displaying/as-string/
相关用法
- Moment.js moment().to()用法及代码示例
- Moment.js moment().toNow()用法及代码示例
- Moment.js moment().toArray()用法及代码示例
- Moment.js moment().toJSON()用法及代码示例
- Moment.js moment().toDate()用法及代码示例
- Moment.js moment().toISOString()用法及代码示例
- Moment.js moment().toObject()用法及代码示例
- Moment.js moment().calender()用法及代码示例
- Moment.js moment().daysInMonth()用法及代码示例
- Moment.js moment().diff()用法及代码示例
- Moment.js moment().format()用法及代码示例
- Moment.js moment().from()用法及代码示例
- Moment.js moment().fromNow()用法及代码示例
- Moment.js moment().unix()用法及代码示例
- Moment.js moment().valueOf()用法及代码示例
- Moment.js moment().millisecond()用法及代码示例
- Moment.js moment().set()用法及代码示例
- Moment.js moment().local()用法及代码示例
- Moment.js moment().min()用法及代码示例
- Moment.js moment().get()用法及代码示例
- Moment.js moment().startOf()用法及代码示例
- Moment.js moment().isoWeeksInYear()用法及代码示例
- Moment.js moment().utcOffset()用法及代码示例
- Moment.js moment().zone()用法及代码示例
- Moment.js moment().add()用法及代码示例
注:本文由纯净天空筛选整理自sayantanm19大神的英文原创作品 Moment.js moment().toString() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。