gpt4 book ai didi

javascript - 不确定如何在 AdonisJs 中使用外键保存到数据库

转载 作者:搜寻专家 更新时间:2023-10-30 23:25:37 24 4
gpt4 key购买 nike

总结

我正在开发一个摄影应用程序来帮助摄影师跟踪他们的客户。这是我使用 Adonis.JS 的第一个项目,到目前为止我真的很喜欢它,但是在这个问题上停留了一段时间并且无法在任何地方找到答案。我将分享我的模型、 Controller 和迁移(可能没有正确创建关系,自从我完成任何后端工作以来已经有一段时间了)

工作流程:一个用户有很多客户,一个客户有很多服务需要能够从用户那里获得服务。

我尝试过的

在我的 ServiceController 中保存时,我尝试过类似的操作:

const user = await auth.getUser();

service.fill({
name,
price,
quantity,
due_date
});

await user.clients().services().save(service);

return service;

但遗憾的是,我收到 500 条错误消息:“user.clients(...).services is not a function”,这确实有道理,只是不确定该怎么做。

我工作的一种方式是:

const clients = await Database.table('clients').select('*').where('user_id', user.id);

await Database.table('services')
.insert({
name,
price,
quantity,
due_date: dueDate,
client_id: clients[0].id
});

return service;

我只是觉得这个解决方案不对,考虑到 Adonis 给了 Lucid 感觉有点老套,我不确定;但我觉得该查询有时会导致问题。

模型

用户模型

class User extends Model {
clients() {
return this.hasMany('App/Models/Client');
}
}

客户端模型

class Client extends Model {
users() {
return this.belongsToMany('App/Models/User');
}

services() {
return this.hasMany('App/Model/Service');
}
}

服务模式

class Service extends Model {
client() {
return this.belongsTo('App/Models/Client');
}
}

Controller

服务 Controller

  async store ({ auth, request, response }) {
// Get Authenticated user
const user = await auth.getUser();

// Retrieve new service from payload
const { name, price, quantity, dueDate } = request.all();

const service = new Service();

service.fill({
name,
price,
quantity,
due_date: dueDate
});

await user.clients().services().save(service);

return service;
}

客户端 Controller

    // Get Authenticated user
const user = await auth.getUser();

// Retrieve new client from payload
const { name, email, address, phoneNumber } = request.all();

const client = new Client();

client.fill({
name,
email,
address,
phone_number: phoneNumber
});

await user.clients().save(client);

return client;

迁移

服务架构

class ServiceSchema extends Schema {
up () {
this.create('services', (table) => {
table.increments();
table.string('name', 255).notNullable();
table.integer('price', 25).notNullable();
table.integer('quantity', 25).notNullable().defaultTo(1);
table.date('due_date', 100).notNullable();
table.boolean('paid').notNullable().defaultTo(false);

table.integer('client_id', 25).unsigned().references('id').inTable('clients');
table.timestamps();
});
}

down () {
this.drop('services');
}
}

客户端架构

class ClientSchema extends Schema {
up () {
this.create('clients', (table) => {
table.increments();
table.string('name', 255).notNullable();
table.string('email', 255).notNullable();
table.string('address', 255).notNullable();
table.string('phone_number', 25).notNullable();

table.integer('user_id', 25).unsigned().references('id').inTable('users');
table.timestamps();
});
}

down () {
this.drop('clients');
}
}

用户架构

class UserSchema extends Schema {
up () {
this.create('users', (table) => {
table.increments()
table.string('first_name', 80).notNullable();
table.string('last_name', 80).notNullable();
table.string('email', 254).notNullable().unique();
table.string('password', 60).notNullable();
table.timestamps();
});
}

down () {
this.drop('users');
}
}

预期输出

如果可能的话,我希望我的表格最终看起来像这样:

用户表

|编号 |名字 |姓氏 |电邮 |密码 |创建时间 |更新时间|

客户表

|编号 |姓名 |电邮 |地址 |电话号码 |用户 ID |创建时间 |更新时间|

服务表

|编号 |姓名 |数量 |截止日期|付费 | client_id |创建时间 |更新时间|

我需要一种方法来保存对客户端 ID 的引用的服务。我希望用 Lucid 来做这件事,但如果这在这里不适用也没关系。只是想要那种一致性。

最佳答案

我最终决定我应该只通过正文传递 clientId。

服务 Controller :

  async store ({ auth, request, response }) {
// Get Authenticated user
const user = await auth.getUser();

// Retrieve new service from payload
const { name, price, quantity, dueDate, clientId } = request.all();

const service = await Service.create({
name,
price,
quantity,
due_date: dueDate,
client_id: clientId
});

return response.status(200).send(service);
}

关于javascript - 不确定如何在 AdonisJs 中使用外键保存到数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58452420/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com