我有形式值與'我'甚至必須發送存儲在本地主機的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');
}
})
}
}
那你想幹什麼?它對我不明確。 – micronyks