在 signup() 上插入记录到已连接的 table
Inserting record to connected table on signup()
想象两个 tables,用户和地址。地址通过一对多关系连接到用户。
我想在注册时向地址 table 添加记录()
signup(firstName, lastName, email, {'what should I be' : 'what should I be'})
是否必须使用注册参数来完成?或者还有其他方法。
您可以使用 2 种方法:
1) 使用返回和操作 - 服务器端逻辑,在您创建用户注册后。
2) 使用您的代码,例如:
this.backand.signup(firstName, lastName, email)
.then((data: any) => {
console.log('Sign up succeeded');
//Do here the Address thing to update the addrss table...
},
(err: any) => {
console.log(err)
}
);
想象两个 tables,用户和地址。地址通过一对多关系连接到用户。
我想在注册时向地址 table 添加记录()
signup(firstName, lastName, email, {'what should I be' : 'what should I be'})
是否必须使用注册参数来完成?或者还有其他方法。
您可以使用 2 种方法:
1) 使用返回和操作 - 服务器端逻辑,在您创建用户注册后。
2) 使用您的代码,例如:
this.backand.signup(firstName, lastName, email)
.then((data: any) => {
console.log('Sign up succeeded');
//Do here the Address thing to update the addrss table...
},
(err: any) => {
console.log(err)
}
);