Skip to content
Advertisement

Convert fields before sending to the page

I have a user dto class and i need to convert some of its properties before send it to frontend.

UsedDto class

JavaScript

Now, from my controller

JavaScript

i get data like this

JavaScript

In my case, before send data, i should convert boolean values (enabled, active) to string “Y” or “N”.

JavaScript

How can i do this?

Advertisement

Answer

You can implement a custom serializer. Take a look at the example.

JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement