2017-06-21 90 views
-2

嗨,我當我發佈的數據,以我的後端,我使用PHP和我已經允許在後端的頭部得到這個錯誤下面附圖。由於角4 PHP後臺發佈錯誤

enter image description here

+0

的消息告訴您用簡單的英語缺什麼。 – CBroe

+0

但我已經實現了頭('訪問控制 - 允許 - 原產地:*');在後端..當即時通訊使用http.get沒有問題,我遇到 – Arcubalino

+0

_「但我已經實現了頭('訪問控制 - 允許 - 原產地:*');在後端「_--對你來說非常好 - 但這不是錯誤消息提到的標題。 – CBroe

回答

0

嗨,大家好,我得到我只是說了下面的參數在我的崗位答案。下面的代碼:

create(item){ 
 
     let headers = new Headers({ 'Content-Type': 'application/x-www-form-urlencoded' }); 
 
     let options = new RequestOptions({ headers: headers }); 
 
     
 
    return this.http.post("your_url_here.com/index.php",item,options) 
 
    .map(data => data.json()) 
 
    .toPromise(); 
 
}