Same views, different slice models | Community
Skip to main content
gabrielav200407
New Participant
October 16, 2015
Solved

Same views, different slice models

  • October 16, 2015
  • 2 replies
  • 871 views

Say I'm having a jsp script that uses a model Model1 which provides myMethod. Now, model Model2 has it's own implementation of myMethod.

Model1 is for component 1, Model2 is for component 2. I want to include the jsp script in both components, without the need to duplicate it, the only difference being the model instantiated.

 

Any ideas?

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Lokesh_Shivalingaiah

You can write a factory class which initialize either model 1 or model 2 based on your condition and then use that factory class in your jsp script

2 replies

Lokesh_Shivalingaiah
Lokesh_ShivalingaiahAccepted solution
New Participant
October 16, 2015

You can write a factory class which initialize either model 1 or model 2 based on your condition and then use that factory class in your jsp script

smacdonald2008
New Participant
October 16, 2015

Another way people work with models in AEM is to use the BackBone framework:

http://backbonejs.org/