我正在尝试创建关注者/跟随系统,当我尝试将新用户追加到以下列表时,出现错误Cannot read property 'push' of undefined
。最终创建了2个单独的表,一个表供其他用户关注的用户使用,另一表供其他用户关注的用户使用。不确定为什么不去接场吗?任何帮助表示赞赏。
import { Length } from "class-validator";
import {
Column,
CreateDateColumn,
Entity,
JoinTable,
ManyToMany,
OneToMany,
PrimaryColumn,
RelationCount,
Unique,
UpdateDateColumn
} from "typeorm";
export class User {
@PrimaryColumn()
public user_id: string;
@Column()
public first_name: string;
@Column()
public last_name: string;
@Column()
public email: string;
@Column()
public phone_number: string;
@Column()
public username: string;
@Column()
@CreateDateColumn()
public created_on: Date;
@Column()
@UpdateDateColumn()
public updated_at: Date;
@ManyToMany((type) => User, (user) => user.following)
@JoinTable()
public followers: User[];
@ManyToMany((type) => User, (user) => user.followers)
@JoinTable()
public following: User[];
@RelationCount((user: User) => user.followers)
public followers_count: number;
@RelationCount((user: User) => user.following)
public following_count: number;
}
const { user_id,
follow_user_id } = req.
const user_repo = getRepository(User);
const user = await user_repo.findOne({
where: {user_id}
});
const follow_user = new User();
follow_user.user_id = follow_user_id;
user.following.push(follow_user);
const result = user_repo.save(user);
错误指向此行user.following.push(follow_user);
UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'push' of undefined
答案 0 :(得分:1)
我没有在下面测试方法,但认为其中一种方法可以为您提供帮助。
第一种方法。在您的User
课堂上。
// Source code omission
@ManyToMany((type) => User, (user) => user.followers)
@JoinTable()
public following: User[] = []; // ★ Added assign
// Source code omission
第二种方式。在您的User
课堂上。
export class User {
// Source code omission
constructor() { // ★ Added line
this.following = []; // ★ Added line
} // ★ Added line
}
第三种方式。。在使用User
类的地方。
const follow_user = new User();
follow_user.user_id = follow_user_id;
user.following = []; // ★ Added line
user.following.push(follow_user);
const result = user_repo.save(user);
第四种方法。。在使用User
类的地方。
const follow_user = new User();
follow_user.user_id = follow_user_id;
user.following = [follow_user]; // ★ Edited line
const result = user_repo.save(user);
答案 1 :(得分:1)
我在OneToMany和ManyToOne关系中遇到了类似的错误,其中亲戚返回了null / undefined。
我正在使用的解决方法涉及将其放入User类:
@AfterLoad()
async nullChecks() {
if (!this.followers) {
this.followers = []
}
if (!this.following) {
this.following = []
}
}