0
import { Http, Headers } from '@angular/http';
export class LoginComponent implements OnInit {
let headers: Headers = new Headers();
headers.append('Content-Type','application/json');}
上記のコードで次のエラーが発生します。angular2プロパティ 'append'が 'ヘッダー'タイプに存在しません
'append' error: Property 'append' does not exist on type 'Headers'.
どうすれば解決できますか?
あなたのコードを置く:let headers:Headers = new Headers(); headers.append( 'Content-Type'、 'application/json'); 'コンストラクタ'または 'ngOnInit()'の中にあります。 –