Aurelia - 转换器

如果您需要在 Aurelia 应用中转换某些值,则可以使用 转换器,而不必手动将值转换为所需格式。

转换日期

当我们想要将默认日期值转换为某种特定格式时,我们可以使用 momentJS 库。这是一个用于操作日期的小型库。

C:\Users\username\Desktop\aureliaApp>jspm install moment

让我们创建一个新文件 converters.js。我们将使用此文件添加转换器特定的代码。使用以下命令或手动创建文件。

C:\Users\username\Desktop\aureliaApp>touch converters.js

converter.js

在此文件中,我们将导入 moment 库并设置 DateFormatValueConverter 以仅返回月、日和年值,而不返回其他数据。需要注意的重要一点是,Aurelia 可以识别以 ValueConverter 结尾的任何类。这就是为什么我们的类名为 DateFormatValueConverter。此类将注册为 dateFormat,我们稍后可以在视图中使用它。

converters.js

import moment from 'moment';

export class DateFormatValueConverter {
   toView(value) {
      return moment(value).format('M/D/YYYY');
   }
}

app.js 中,我们只使用当前日期。这将是我们的视图模型。

app.js

export class App {
   constructor() {
      this.currentDate = new Date();
   }
}

我们已经在 custom-elements 一章中讨论了 require。管道符号 | 用于应用转换器。我们仅使用 dateFormat,因为这是 Aurelia 注册 DateFormatValueConverter 的方式。

app.html

<template>
   <require from = "./converters"></require>

   <h3>${currentDate | dateFormat}</h3>
</template>
Aurelia Converters Date

转换货币

这是货币格式的示例。您会注意到,该概念与上面的示例相同。首先,我们需要从命令提示符安装numeral库。

C:\Users\username\Desktop\aureliaApp>jspm installnumeral

转换器将设置货币格式。

converters.js

import numeral from 'numeral';

export class CurrencyFormatValueConverter {
   toView(value) {
      return numeral(value).format('($0,0.00)');
   }
}

View-model 只会生成一个随机数。我们将使用它作为货币值并每秒更新它。

app.js

export class App {
   constructor() {
      this.update();
      setInterval(() => this.update(), 1000);
   }
   update() {
      this.myCurrency = Math.random() * 1000;
   }
}

我们的视图将显示转换为货币的随机生成的数字。

app.html

<template>
   <require from = "./converters"></require>

   <h3>${myCurrency | currencyFormat}</h3>
</template>
Aurelia 货币转换器