axios:是否可以不从链接硬编码HTTPS协议

时间:2018-05-23 07:15:29

标签: axios

是否有可能不在axios中硬编码HTTPS协议? 我想在没有硬编码的情况下连接HTTPS协议。

axios.post('https://example.com/api/user', {
    firstName: 'Fred',
    lastName: 'Flintstone'
  })

预期

axios.post('example.com/api/user', {
    firstName: 'Fred',
    lastName: 'Flintstone'
  })

0 个答案:

没有答案