DS.BooleanTransform

DS.BooleanTransform Class

Extends: DS.Transform

Defined in: addon/-private/transforms/boolean.js:6

Module: ember-data

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

Usage

app/models/user.js
import DS from 'ember-data';

export default DS.Model.extend({
  isAdmin: DS.attr('boolean'),
  name: DS.attr('string'),
  email: DS.attr('string')
});

By default the boolean transform only allows for values of true or false. You can opt into allowing null values for boolean attributes via DS.attr('boolean', { allowNull: true })

app/models/user.js
import DS from 'ember-data';

export default DS.Model.extend({
  email: DS.attr('string'),
  username: DS.attr('string'),
  wantsWeeklyEmail: DS.attr('boolean', { allowNull: true })
});

© 2017 Yehuda Katz, Tom Dale and Ember.js contributors
Licensed under the MIT License.
https://emberjs.com/api/data/classes/DS.BooleanTransform.html

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部