2016-07-30 65 views
0

我有形式值與'我'甚至必須發送存儲在本地主機的ID。我該怎麼做.........任何人都請建議幫助....如何將值推入數組

onSubmit(form){ 

    console.log(form); 
    var str = localStorage.getItem('social'); 
    var loc = JSON.parse(str); 
    var profile_id = loc.profile_id; 
    var headers = new Headers(); 
    headers.append('Content-Type','application/x-www-form-urlencoded') 
    this.http.post('http://localhost/angular/index.php/profile/addaddress', JSON.stringify(form),{headers:headers}) 
     .subscribe(
     response => { 
      if(response.json().error_code ==0){ 
      alert('added successfully'); 
      } 
      else{ 
      alert('fail'); 

      } 
      }) 
    } 


    } 
+0

那你想幹什麼?它對我不明確。 – micronyks

回答

0
onSubmit(form){ 
     ... 
     var profile_id = loc.profile_id; 
     form.profile_id=prifile_id; 
     ... 
} 
+0

我沒有profile_id在我的表單數據,我想發送表單,以及我從本地存儲獲得的profile_id – MMR

+0

是的,最近去吧。所以這段代碼就是你想要的。 – micronyks

+0

謝謝micronyks – MMR