“Keektujej Wyklucz atrybuty” Kod odpowiedzi

Seenizować Wyklucz atrybut

User
  .findAll({
    attributes: {exclude: ['password']},
    order: [['id','DESC']]})
  .then( users => {
    return reply( ReplyUtil.ok(users) );
  })
  .catch( err => {
    return reply( ReplyUtil.badImplementation(err) );
  });
Ham-Solo

Wyłącz zapytań o seklizację atrybutów

MyModel.findAll({
  attributes: {exclude: ['some_field']}
});
Real Reindeer

Keektujej Wyklucz atrybuty

const my_model = await MyModel.findById(id, {
  include: [
    {
      model: AnotherModel,
      attributes: [ 'displayName', 'email' ] // only these attributes returned
    },
    { model: YetAnotherModel,
      include: [{
        model: AnotherModel,
        attributes: [ 'id', 'displayName', 'email' ]
      }]
    }
  ]
})
AnswerHunter

Odpowiedzi podobne do “Keektujej Wyklucz atrybuty”

Pytania podobne do “Keektujej Wyklucz atrybuty”

Więcej pokrewnych odpowiedzi na “Keektujej Wyklucz atrybuty” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu