snipt

Ctrl+h for KB shortcuts

Text only

Angular contact form processing

   $scope.sendContact = function() {

      var contact_data = {
        first_name: this.contact.first_name,
        last_name: this.contact.last_name,
        phone: this.contact.phone,
        email: this.contact.email,
        message: this.contact.message,
        reason: this.contact.reason.id
      };

      $http({
        method : "POST",
        url: apiDomain + contentPath + "contact.php",
        data: contact_data
      }).then(function mySucces(response) {
        $scope.result = response.data;

      }, function myError(response) {
        alert(response.statusText);
      });
    }
https://snipt.net/embed/f86ea718d6895d3cb5ebf278733f2fe3/
/raw/f86ea718d6895d3cb5ebf278733f2fe3/
f86ea718d6895d3cb5ebf278733f2fe3
text
Text only
23
2024-05-19T21:10:17
True
False
False
Jun 27, 2016 at 08:59 PM
/api/public/snipt/146986/
angular-contact-form-processing
<table class="highlighttable"><tr><td class="linenos"><div class="linenodiv"><pre><a href="#L-1"> 1</a> <a href="#L-2"> 2</a> <a href="#L-3"> 3</a> <a href="#L-4"> 4</a> <a href="#L-5"> 5</a> <a href="#L-6"> 6</a> <a href="#L-7"> 7</a> <a href="#L-8"> 8</a> <a href="#L-9"> 9</a> <a href="#L-10">10</a> <a href="#L-11">11</a> <a href="#L-12">12</a> <a href="#L-13">13</a> <a href="#L-14">14</a> <a href="#L-15">15</a> <a href="#L-16">16</a> <a href="#L-17">17</a> <a href="#L-18">18</a> <a href="#L-19">19</a> <a href="#L-20">20</a> <a href="#L-21">21</a> <a href="#L-22">22</a></pre></div></td><td class="code"><div class="highlight"><pre><span></span><span id="L-1"><a name="L-1"></a> $scope.sendContact = function() { </span><span id="L-2"><a name="L-2"></a> </span><span id="L-3"><a name="L-3"></a> var contact_data = { </span><span id="L-4"><a name="L-4"></a> first_name: this.contact.first_name, </span><span id="L-5"><a name="L-5"></a> last_name: this.contact.last_name, </span><span id="L-6"><a name="L-6"></a> phone: this.contact.phone, </span><span id="L-7"><a name="L-7"></a> email: this.contact.email, </span><span id="L-8"><a name="L-8"></a> message: this.contact.message, </span><span id="L-9"><a name="L-9"></a> reason: this.contact.reason.id </span><span id="L-10"><a name="L-10"></a> }; </span><span id="L-11"><a name="L-11"></a> </span><span id="L-12"><a name="L-12"></a> $http({ </span><span id="L-13"><a name="L-13"></a> method : &quot;POST&quot;, </span><span id="L-14"><a name="L-14"></a> url: apiDomain + contentPath + &quot;contact.php&quot;, </span><span id="L-15"><a name="L-15"></a> data: contact_data </span><span id="L-16"><a name="L-16"></a> }).then(function mySucces(response) { </span><span id="L-17"><a name="L-17"></a> $scope.result = response.data; </span><span id="L-18"><a name="L-18"></a> </span><span id="L-19"><a name="L-19"></a> }, function myError(response) { </span><span id="L-20"><a name="L-20"></a> alert(response.statusText); </span><span id="L-21"><a name="L-21"></a> }); </span><span id="L-22"><a name="L-22"></a> } </span></pre></div> </td></tr></table>
angular, ionic