在Angular 8中解决CORS问题可以通过以下步骤:
const express = require('express');
const app = express();
app.use((req, res, next) => {
res.setHeader('Access-Control-Allow-Origin', '*');
res.setHeader('Access-Control-Allow-Headers', 'Origin, X-Requested-With, Content-Type, Accept');
res.setHeader('Access-Control-Allow-Methods', 'GET, POST, PATCH, DELETE, OPTIONS');
next();
});
// 其他路由和中间件
import { Injectable } from '@angular/core';
import { HttpClient, HttpHeaders } from '@angular/common/http';
@Injectable({
providedIn: 'root'
})
export class DataService {
private apiUrl = 'http://example.com/api';
constructor(private http: HttpClient) { }
getData() {
const headers = new HttpHeaders().set('Access-Control-Allow-Origin', '*');
return this.http.get(this.apiUrl, { headers });
}
}
import { Injectable } from '@angular/core';
import { HttpClient, HttpHeaders } from '@angular/common/http';
@Injectable({
providedIn: 'root'
})
export class DataService {
private apiUrl = 'http://example.com/api';
private authToken = 'your-auth-token';
constructor(private http: HttpClient) { }
getData() {
const headers = new HttpHeaders()
.set('Access-Control-Allow-Origin', '*')
.set('Authorization', `Bearer ${this.authToken}`);
return this.http.get(this.apiUrl, { headers });
}
}
这些是解决Angular 8中CORS问题的一些常见方法。根据你的后端服务器配置和需求,可能需要调整代码。