我对打字稿相当陌生,并在网上搜索试图找到对此的解释。
最近我一直在做一个项目,并想使用sequelize 来完成它。在阅读文档的打字稿部分时,我遇到了下面的示例:
// These are all the attributes in the User model
interface UserAttributes {
id: number;
name: string;
preferredName: string | null;
}
// Some attributes are optional in `User.build` and `User.create` calls
interface UserCreationAttributes extends Optional<UserAttributes, "id"> {}
class User extends Model<UserAttributes, UserCreationAttributes>
implements UserAttributes {
public id!: number; // Note that the `null assertion` `!` is required in strict mode.
public name!: string;
public preferredName!: string | null; // for nullable fields
// timestamps!
public readonly …Run Code Online (Sandbox Code Playgroud) 我一直在查看 terraform 弹性负载均衡器资源,并注意到侦听器 (aws_lb_listener > default_action >forward > Stickiness ) 和 target group 内存在粘性资源块。
如果将请求转发到关联的目标组,两者之间有什么区别吗?
如果您想要这种粘性行为,是否应该以类似的方式配置它们?
在目标组上配置粘性是否更好?