0

Is there any way of submitting form data in a new window and using AngularJS. The traditional way of doing this stuff is by setting target attribute of form ? Is there a way of doing same using Angular.

Nav Ali
  • 1,232
  • 6
  • 17
  • 26

1 Answers1

0

You are still able to submit your form to diferent target but it will only send the html form data - not the angular form data (which can contain more complex data structures than strings and numbers).

If you want to send the angular form data I would recommend using $http service;

See this question for example

Community
  • 1
  • 1
g00fy
  • 4,717
  • 1
  • 30
  • 46