我想代理返回一个HTML页面一定API点,但我得到的错误Access to font at 'https://data.domain.com/v3/assets/fonts/glyphicons-halflings-regular.woff2' from origin 'http://localhost:4200' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.
GET https://data.domain.com/v3/assets/fonts/glyphicons-halflings-regular.woff2 net::ERR_FAILED
在我的角度应用程序,我有我代理到三个不同的目标。 前两个代理服务器工作正常,但对方是有点怪。 我proxy.conf.json
文件看起来某事像这样...
{
"/API": {}, // First proxy works fine
"/info": {}, // Second proxy fine too
"/data": {
"target": "https://data.domain.com/v3/uk",
"secure": false,
"pathRewrite": {
"^/data": ""
},
"changeOrigin": true,
"logLevel": "debug"
}
}
所以,我的数据服务中,我定义一个变量data
包含路径'/data'
和我通过,作为在像这样我的POST请求的路径...
private data = '/data';
public fetchData(data: Data) {
return this.http.post(this.data, data, {responseType: 'text');
}
在作出这一职务的请求,我期待返回的值是一些HTML代码,我想结合我的模板。 这里存在的问题。 你看,在返回的HTML看起来是这样的...
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>My Page</title>
<!-- Bootstrap -->
<link href='https://fonts.googleapis.com/css?family=Ubuntu:300' rel='stylesheet' type='text/css'>
<link href="https://data.domain.com/v3/assets/css/bootstrap.min.css" rel="stylesheet">
<link href="https://data.domain.com/v3/assets/css/loading-bar.min.css" rel="stylesheet">
<link href="https://data.domain/v3/assets/css/custom.css" rel="stylesheet">
</head>
<body
<p class="title">Page Title</p>
</body>
</html>
请参阅引导进口? 我认为这是什么引起的,因为里面的问题bootstrap.min.css
代码,引用glyphicons-halflings-regular
的字体是由这样的...
url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype')
因此,对于每个这样的字体格式,我得到确切同样的错误重复。 我该如何解决这个问题?