如何在 Axios 中使用 "preconnect" 和 "dns-prefetch"

how to use "preconnect" and "dns-prefetch" with Axios

如何使用 Axios 解决此问题,是否有任何参数?

axios.get('/slug', { params })

Preconnect to required origins Consider adding preconnect or dns-prefetch resource hints to establish early connections to important third-party origins. Learn more.

为什么 chrome 审计在源代码中不存在此 url 时声明此机会

https://immobiliere-essaouira.graines-digitales.fr/

全部resource hints can be used only as attributes on a <link> element. You can read about what they do and how for example here

因此您无法直接在 JavaScript 中执行任何操作(当然,除了根据用户操作将属性动态添加到现有 link)

如果您使用域 https://api.my-app.com 中的 Axios 请求某些内容,只需将 <link rel="preconnect" href="https://api.my-app.com" /> 包含到您的页面中就足够了...