axios.post(
'https://suggestions.dadata.ru/suggestions/api/4_1/rs/suggest/fio', // url
{ 'query': FIO }, // data
{
headers: {
'Content-Type': 'application/json',
'Accept': 'application/json',
'Authorization': 'Token ' + API_KEY
},
// `withCredentials` indicates whether or not cross-site Access-Control requests
// should be made using credentials
withCredentials: true // Может быть надо, а может быть нет
} // config
)
.then(function (response) {
console.log(response); // Здесь обработать ответ как надо
})
.catch(function (error) {
console.log(error);
});
From Reactmust receive FIO(request text) API_KEY- 注册时发出的密钥
像这样的东西
From
React
must receiveFIO
(request text)API_KEY
- 注册时发出的密钥使用 jQuery 你可以这样做:
需要将此函数添加到组件的适当处理程序中。不要忘记设置 CORS,因为您正在访问不同的域。我认为在axios下重制并不难。