Home »
MCQs »
EmberJS MCQs
Which of the following functions are performed by the route handler in EmberJS?
20. Which of the following functions are performed by the route handler in EmberJS?
- It offers the template.
- It specifies the model that the template will have access to.
- If the user does not have the authorization to browse a specific section of the app, the router will divert to a different route.
- All of the above
- Only A and C
Answer: D) All of the above
Explanation:
Following are the function that the route handler performs:
- It offers the template.
- It specifies the model that the template will have access to.
- If the user does not have the authorization to browse a specific section of the app, the router will divert to a different route.