{
proxy: true,
},
proxy: {
'/api': {
target: "http://crm/",
secure: false,
changeOrigin: true,
pathRewrite: {'^/api/': ''}},
},
вот запрос
methods: {
async testAxios() {
const test = async () => {
await this.$axios.$get('api/packages/getpackage', {
headers: {
'Access-Control-Allow-Origin': '*',
'Content-Type': 'application/json',
},
params: {
gib_id: 4,
mid_id: 22,
mip_id: 53,
}
},{useCredentails: true })
.then((response) => {
console.log(typeof (response));
console.log(response);
})
.catch(err => console.log('testAxios' + err));
};
await test();
}
}
возвращает пустую строку. До этого ругался на cors, вроде избавился от проблемы с чем это мб связанно? target: "http://crm/", - это url который работает в нашей локальной сети. Запрос шлю пока что с localhost:3000.
Если в браузер вставить сразу к пример http://crm/packages/getpackage?gib_id=4&mid_id=22&mip_id=53 мне он отдает json,
Если же такой же запрос отправить через axios.get(http://crm/packages/getpackage?gib_id=4&mid_id=22&mip_id=53) то тоже получу пустую строку.
вот headers: запроса который я произвожу через прокси
Request URL: http://localhost:3000/api/packages/getpackage?gib_id=4&mid_id=22&mip_id=53
Request Method: GET
Status Code: 200 OK
Remote Address: 127.0.0.1:3000
Referrer Policy: no-referrer-when-downgrade
access-control-allow-headers: *
access-control-allow-methods: PUT, GET, POST, DELETE, OPTIONS
access-control-allow-origin: *
cache-control: no-store, no-cache, must-revalidate
connection: close
content-length: 0
content-type: text/html; charset=UTF-8
date: Thu, 03 Sep 2020 04:38:59 GMT
expires: Thu, 19 Nov 1981 08:52:00 GMT
pragma: no-cache
refresh: 0;url=http://crm/user/login
server: Apache
set-cookie: gmcrm_session=co56dr5pbu14tv7bhd8b31fil6tu9qll; expires=Sun, 04-Oct-2020 04:39:07 GMT; Max-Age=2678400; path=/; domain=crm; HttpOnly
Accept: application/json, text/plain, */*
Accept-Encoding: gzip, deflate, br
Accept-Language: ru-RU,ru;q=0.9,en-US;q=0.8,en;q=0.7
Access-Control-Allow-Origin: *
Connection: keep-alive
Host: localhost:3000
Referer: http://localhost:3000/
Sec-Fetch-Dest: empty
Sec-Fetch-Mode: cors
Sec-Fetch-Site: same-origin
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.83 Safari/537.36
X-Requested-With: XMLHttpRequest
gib_id: 4
mid_id: 22
mip_id: 53
Может бэк не позволяет cors. Что в ответе в хидере?
Обсуждают сегодня