New Issues
Explore how to implement and manage unidirectional non-functional associations in JavaScript front-end applications. Learn to code multi-valued reference methods like add and remove, enforce cardinality constraints, and convert between ID and object references. Understand techniques for displaying and selecting associated objects in the user interface, including alternatives to HTML multiple select controls for better usability.
We'll cover the following...
Issues to deal with
Similar to when we deal with a functional association, as discussed in the previous chapter, we now have to deal with the following new technical issues:
-
In the model code, we now have to the following multi-valued reference properties require implementation:
-
An
addmethod and aremovemethod, such asaddAuthorandremoveAuthor. In addition to ...
-