What are the Slack Archives?

It’s a history of our time together in the Slack Community! There’s a ton of knowledge in here, so feel free to search through the archives for a possible answer to your question.

Because this space is not active, you won’t be able to create a new post or comment here. If you have a question or want to start a discussion about something, head over to our categories and pick one to post in! You can always refer back to a post from Slack Archives if needed; just copy the link to use it as a reference..

Hello, we are trying to extend the ProductController from the productdetailpage to provide another r

UPWG9AYH2
UPWG9AYH2 Posts: 509 🧑🏻‍🚀 - Cadet

Hello,
we are trying to extend the ProductController from the productdetailpage to provide another route for giving parts of the productview as json response. Since this not a usual route registered via RouterDependencyProvider but via StorageRouterDepedencyProvider we have no clue how to register a new route here … The matching action should be ‘detail’ but thats not the path from the url … url is something like “yves.local/en/test-product-with-a-speaking-url” which match the detail action automatically … how to add some route for providing data in json format?…
Best

Comments

  • UPWG9AYH2
    UPWG9AYH2 Posts: 509 🧑🏻‍🚀 - Cadet

    Following the ControllerRouteEnhancer logic, only the first matching plugin for the given type is returned. Unfortunately, spryker does not make a difference what kind of resource is requested. In this case is is always calls the “detailAction” of the ProductdetailPAgeResourceCreatorPlugin no matter if json or html was requested … some ideas how to solve this? Any ideas to register two controllers for the pdp? At the moment we have some kind of “if” at the beginning of the detailaction which checks if the header requests json …. but its not very beatiful in my eyes …