标签: 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' })