Class StringTransform

public

The StringTransform class is used to serialize and deserialize string attributes on Ember Data record objects. This transform is used when string is passed as the type parameter to the attr function.

Usage

app/models/user.js
1
2
3
4
5
6
7
import Model, { attr, belongsTo } from '@ember-data/model';

export default class UserModel extends Model {
  @attr('boolean') isAdmin;
  @attr('string') name;
  @attr('string') email;
}

Show:

Methods

Properties

No documented items

Events

No documented items