- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我正在开发一个摄影应用程序来帮助摄影师跟踪他们的客户。这是我使用 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
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/
我的问题是如何在 python 中创建一个简单的数据库。我的例子是: User = { 'Name' : {'Firstname', 'Lastname'}, 'Address' : {'Street
我需要创建一个与远程数据库链接的应用程序! mysql 是最好的解决方案吗? Sqlite 是唯一的本地解决方案吗? 我使用下面的方法,我想知道它是否是最好的方法! NSString *evento
给定两台 MySQL 服务器,一台本地,一台远程。两者都有一个包含表 bohica 的数据库 foobar。本地服务器定义了用户 'myadmin'@'%' 和 'myadmin'@'localhos
我有以下灵活的搜索查询 Select {vt:code},{vt:productcode},{vw:code},{vw:productcode} from {abcd AS vt JOIN wxyz
好吧,我的电脑开始运行有点缓慢,所以我重置了 Windows,保留了我的文件。因为我的大脑还没有打开,所以我忘记事先备份我的 MySQL 数据库。我仍然拥有所有原始文件,因此我实际上仍然拥有数据库,但
如何将我的 Access 数据库 (.accdb) 转换为 SQLite 数据库 (.sqlite)? 请,任何帮助将不胜感激。 最佳答案 1)如果要转换 db 的结构,则应使用任何 DB 建模工具:
系统检查发现了一些问题: 警告:?:(mysql.W002)未为数据库连接“默认”设置 MySQL 严格模式 提示:MySQL 的严格模式通过将警告升级为错误来修复 MySQL 中的许多数据完整性问题
系统检查发现了一些问题: 警告:?:(mysql.W002)未为数据库连接“默认”设置 MySQL 严格模式 提示:MySQL 的严格模式通过将警告升级为错误来修复 MySQL 中的许多数据完整性问题
我想在相同的 phonegap 应用程序中使用 android 数据库。 更多说明: 我创建了 phonegap 应用程序,但 phonegap 应用程序不支持服务,所以我们已经在 java 中为 a
Time Tracker function clock() { var mytime = new Date(); var seconds
我需要在现有项目上实现一些事件的显示。我无法更改数据库结构。 在我的 Controller 中,我(从 ajax 请求)传递了一个时间戳,并且我需要显示之前的 8 个事件。因此,如果时间戳是(转换后)
我有一个可以收集和显示各种测量值的产品(不会详细介绍)。正如人们所期望的那样,显示部分是一个数据库+建立在其之上的网站(使用 Symfony)。 但是,我们可能还会创建一个 API 来向第三方公开数据
我们将 SQL Server 从 Azure VM 迁移到 Azure SQL 数据库。 Azure VM 为 DS2_V2、2 核、7GB RAM、最大 6400 IOPS Azure SQL 数据
我正在开发一个使用 MongoDB 数据库的程序,但我想问在通过 Java 执行 SQL 时是否可以使用内部数据库进行测试,例如 H2? 最佳答案 你可以尝试使用Testcontainers Test
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 已关闭 9 年前。 此问题似乎与 a specific programming problem, a sof
我正在尝试使用 MSI 身份验证(无需用户名和密码)从 Azure 机器学习服务连接 Azure SQL 数据库。 我正在尝试在 Azure 机器学习服务上建立机器学习模型,目的是我需要数据,这就是我
我在我的 MySQL 数据库中使用这个查询来查找 my_column 不为空的所有行: SELECT * FROM my_table WHERE my_column != ""; 不幸的是,许多行在
我有那个基地:http://sqlfiddle.com/#!2/e5a24/2这是 WordPress 默认模式的简写。我已经删除了该示例不需要的字段。 如您所见,我的结果是“类别 1”的两倍。我喜欢
我有一张这样的 table : mysql> select * from users; +--------+----------+------------+-----------+ | userid
我有表: CREATE TABLE IF NOT EXISTS `category` ( `id` int(11) NOT NULL, `name` varchar(255) NOT NULL
我是一名优秀的程序员,十分优秀!