Generate xml in angularjs using custom input and submit it to web service

I want to create XML in angularjs from user input and send it to a web service. Please help me with any code example since I am new to angularjs.

I searched a few sites, but I do not see the right recommendations for creating xml in angularjs.

+4
source share
1 answer

You can use XMLWriterto create XML. You can then pass this XML as a string to your web service. Check out this XML Writer .

Here is a tutorial on using XMLWriter - Tutorial

You can also use this method.

+4
source

Source: https://habr.com/ru/post/1599842/


All Articles