Using feathers-client and sequelize many-to-many relation
问题 I'm trying to get data from an n:m association using feathers. I'm using react for my front-end and connecting to feathers using the feathers-client and socketio. //connection string where the feathers api is running const host = 'http://localhost:3030'; const socket = io(host, { transports: ['websocket'], forceNew: true }); // construct feathers app export const client = feathers() .configure(hooks()) .configure(auth({ storage: window.localStorage })) .configure(socketio(socket)); But when I