HTTP.POST/GETリクエストでヘッダーを渡そうとすると、次のエラーが発生しますArgument of type '{header:Header;}' is not assignable to parameter of type 'RequestOptionsArgs'. Property 'null' is missing in the type '{header:Header;}'
私は多くの解決策を試しましたが、それにロックはありません。
ここに私のコード:
import { Injectable } from '@angular/core';
import { Response, RequestOptions, Headers, Http, URLSearchParams} from '@angular/http';
import { Observable, Subject } from 'rxjs/Rx';
import {Company} from './companyMaster';
import 'rxjs/add/operator/map';
import "rxjs/Rx";
import 'rxjs/add/operator/toPromise';
import {CommonService} from '../../common.service';
@Injectable()
export class CompanyMasterService {
private GetListActionUrl: string;
private AddEditActionUrl: string;
public headers = new Headers({ 'Content-Type': 'application/json' });
public options = new RequestOptions({ headers: this.headers });
commonService: CommonService;
constructor(private _http: Http) {
this.commonService = new CommonService();
this.GetListActionUrl = this.commonService.RootURL + 'Company/GetList';
this.AddEditActionUrl = this.commonService.RootURL + "Company/AddEdit";
}
private RegenerateData = new Subject<number>();
// Observable string streams
RegenerateData$ = this.RegenerateData.asObservable();
GetList(): Promise<Company[]> {
return this._http.get(this.GetListActionUrl + "?branchId=" + this.commonService.BranchId)
.toPromise()
.then(response => this.extractArray(response))
.catch();
}
AddEdit(company: Company): any {
let headers = new Headers({ 'content-type': 'application/json' });
let body = JSON.stringify({
'BRANCH_ID': company.BRANCH_ID.toString(),
'COMPANY_ID': company.COMPANY_ID != null ? company.COMPANY_ID.toString() : null, 'COMPANY_NAME': company.COMPANY_NAME
});
let options = new RequestOptions({ headers: headers});
return this._http.post(this.AddEditActionUrl, body, options)
.toPromise()
.then(response => this.extractArray(response))
.catch();
}
protected extractArray(res: Response, showprogress: boolean = true) {
let data = res.json();
return data || [];
}
private getHeaders() {
// I included these headers because otherwise FireFox
// will request text/html instead of application/json
let headers = new Headers();
headers.append('Accept', 'application/json');
return headers;
}
}
AddEdit()メソッドでヘッダーを渡した上記のコードを参照してくださいが、上記のエラーが表示されます。
visual Studio IDEのエラーを示すスクリーンショットを添付しました。添付ファイルを参照 エラーのスクリーンショット できるだけ早く返信してください。
package.json
{
"name": "sb-admin-angular4-bootstrap4",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve --ec=true",
"build": "ng build --prod",
"gitbuild": "ng build --prod --base='/start-angular/SB-Admin-BS4-Angular-4/master/dist/'",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular/common": "^4.0.0",
"@angular/compiler": "^4.0.0",
"@angular/core": "^4.0.0",
"@angular/forms": "^4.0.0",
"@angular/http": "^4.0.0",
"@angular/platform-browser": "^4.0.0",
"@angular/platform-browser-dynamic": "^4.0.0",
"@angular/router": "^4.0.0",
"@ng-bootstrap/ng-bootstrap": "^1.0.0-alpha.25",
"@ngx-translate/core": "^6.0.1",
"@ngx-translate/http-loader": "0.0.3",
"core-js": "^2.4.1",
"font-awesome": "^4.7.0",
"ionicons": "^3.0.0",
"ng2-charts": "^1.5.0",
"rxjs": "^5.1.0",
"typing": "^0.1.9",
"zone.js": "^0.8.4"
},
"devDependencies": {
"@angular/cli": "^1.1.3",
"@angular/compiler-cli": "^4.0.0",
"@types/jasmine": "2.5.38",
"@types/node": "~6.0.60",
"codelyzer": "~2.0.0",
"jasmine-core": "~2.5.2",
"jasmine-spec-reporter": "~3.2.0",
"karma": "~1.4.1",
"karma-chrome-launcher": "~2.0.0",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^0.2.0",
"karma-jasmine": "~1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"karma-phantomjs-launcher": "^1.0.4",
"protractor": "~5.1.0",
"ts-node": "~2.0.0",
"tslint": "~4.5.0",
"TypeScript": "~2.2.0",
"webpack": "^3.0.0"
}
}
最後に、RequestOptionsオブジェクトをスキップして私の問題を解決しました。
私はAngular 4を使用しているため、異なる場合がありますが、型指定されていないオブジェクトを作成し、httpメソッド関数に渡します...-
import { Identifiable, RestRepositoryService, HalResponse } from '../spring-data/rest-repository.service';
import { Injectable } from '@angular/core';
import { HttpClient, HttpHeaders } from '@angular/common/http';
import { ContentTemplate } from '../content-template/content-template.service';
export class ContentItem extends HalResponse {
id: string;
name: string;
description?: string;
fieldValues: any;
template: any;
contentType: any;
}
@Injectable()
export class ContentItemService extends RestRepositoryService<ContentItem> {
getContentType(contentItem: ContentItem) {
return this.http.get(contentItem._links.contentType.href);
}
getContentTemplate(contentItem: ContentItem) {
return this.http.get(contentItem._links.template.href);
}
setContentTemplate(contentItem: ContentItem, template: ContentTemplate) {
const headers = new HttpHeaders({'Content-Type': 'text/uri-list'});
return this.http.put(contentItem._links.template.href, template._links.self.href, {headers: headers});
}
constructor(http: HttpClient) {
super(http, '/api/contentItems');
}
}
この方法を試してください。これは役立ちますか
options = new RequestOptions();
options.headers = new Headers();
options.headers.append('Content-Type', 'application/json');
options.headers.append('X-Requested-With', 'XMLHttpRequest');
あなたが持っている問題はここにあります:
_private getHeaders() {
// I included these headers because otherwise FireFox
// will request text/html instead of application/json
let headers = new Headers();
headers.append('Accept', 'application/json');
return headers;
}
_
HttpHeaders append()
の実装は次のとおりです。
_append(name: string, value: string|string[]): HttpHeaders {
return this.clone({name, value, op: 'a'});
}
_
HttpHeadersオブジェクトのクローンを返します。追加を有効にするには、それを次の変数に格納する必要があります。
_headers = headers.append('Accept', 'application/json');
_