不要怂,就是干,撸起袖子干!

finding-2.ejs 219 Bytes
Person.find(person.id, { fetchAssociations: true }, function(p) {
  var petNames = p.fetchedAssociations.pets.map(function(pet) { return pet.name }).join(", ")
  Sequelize.Helper.log('The person's pets: ' + petNames)
})