Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 hasMany、HABTM 或做 hasMany 的事情,是否有一种干净的方法来确保某种类型的关联有上限?说,一个帖子只能有3个标签?
一种方法是 beforeSave 回调来计算关联的行数,如果其 >= 3 返回 false。counterCache 可以帮助提高性能。