Does the backend language change the way an application is developed?

0

I have a project where I need to build a hybrid application using a Delphi back-end. But before embarking on the project I need to get some doubts, because I have never worked with Delphi.

Normally in a hybrid application we communicate with the backend via Ajax, where we send get or post parameters to a URL from the back end and get the return that is usually a JSON. This is the default behavior when we talk about a back-end in PHP or Java.

But what about Delphi? Is the way to develop the application changed? Or does it change anything? Do we usually make Ajax requests by sending get or post data and collecting results in JSON?

I know that depends on the system in Delphi, but regardless of that, a backend in Delphi could work as one in PHP or Java, commenting Ajax requests with post and get and return a JSON?

    
asked by anonymous 03.09.2016 / 07:02

2 answers

1

I do not think I should change, no. You could build your backend using rest, so no matter what language you would use on the front end, everyone would consume your backend using ajax requests, swapping JSON. I'm building a small application, in the back end use C # / MVC / EF, in the front end use Angular. The Angular is great.

    
03.09.2016 / 11:29
0

A tip for you, try using languages you give to work with object-oriented. Working with Delphi will give you a headache when it comes to servicing. Regarding ajax with post and get returning a json. Many languages have the power to do this, I do this myself in working with PHP.

    
04.09.2016 / 14:04