Summary
Explore how to implement reference properties and unidirectional associations in JavaScript. Understand the importance of referential integrity, deletion policies, and representing associations in models. Learn how to render these associations in the UI with appropriate widgets for single and multi-valued properties.
We'll cover the following...
We'll cover the following...
Key takeaways
-
We started the chapter with an introduction to reference properties. If an object has references to another object as its values, that’s its reference property. These reference properties can be single-valued (
Committee::chair) or multi-valued (Book::authors). We ...