OpenHarmony开发者论坛

标题: Luxon三方库发布啦 [打印本页]

作者: 润开鸿_坚果    时间: 2024-2-2 21:37
标题: Luxon三方库发布啦
[md]# Luxon

Luxon is a library for working with dates and times in arkts.

本库由 [白晓明](https://gitee.com/lazyboy),完成迁移。

## 一、下载安装

```
ohpm install @nutpi/luxon
```

OpenHarmony ohpm 环境配置等更多内容,请参考[如何安装 OpenHarmony ohpm 包](https://gitee.com/openharmony-tp ... armony_har_usage.md)

## 二、使用

```js
import { DateTime } from '@nutpi/luxon';
```

参数 `options`结构为:

```js
import { DateTime } from '@nutpi/luxon';
@Entry
@Component
struct Index {
  @State message: string = '坚果派';

  build() {
    Row() {
      Column() {
        Text(DateTime.now().toString())
          .fontSize(20)
          .fontWeight(FontWeight.Bold)
      }
      .width('100%')
    }
    .height('100%')
  }
}
```

## 三、开源协议

本项目基于 [Apache](https://gitee.com/nutpi/relationship/blob/master/library/LICENSE) ,请自由地享受和参与开源。感谢[moment](https://github.com/moment/luxon#readme)。

本库由 [白晓明](https://gitee.com/lazyboy),完成迁移。
[/md]
作者: 马迪    时间: 2024-2-4 09:10
只有DateTime.now().toString()方法吗
作者: 润开鸿_坚果    时间: 2024-2-5 09:07
回复 马迪: 其他的都有哇,一整套齐全的




欢迎光临 OpenHarmony开发者论坛 (https://forums.openharmony.cn/) Powered by Discuz! X3.5