会触发 Chrome 中的弃用警告-6ren"> 会触发 Chrome 中的弃用警告-将脚本标记的类型设置为 module结果出现以下警告: Fetching scripts with an invalid type/language attributes is deprecated -6ren">
gpt4 book ai didi

javascript - 使用 <script type ="module"> 会触发 Chrome 中的弃用警告

转载 作者:太空宇宙 更新时间:2023-11-04 16:04:47 25 4
gpt4 key购买 nike

将脚本标记的类型设置为 module结果出现以下警告:

Fetching scripts with an invalid type/language attributes is deprecated and will be removed in M56, around January 2017. See https://www.chromestatus.com/features/5760718284521472 for more details.

我找到了这些two questions关于此弃用警告,也没有解释为什么它会显示此错误 <script type="module">虽然可能尚未实现,但据我所知也是完全有效的。显然,这对于内联脚本来说并不重要,但我不会内联任何真正的js。为什么我会收到此错误?如果重要的话,这是平台/版本:

Version 56.0.2924.76 (64-bit) Linux Mint

最佳答案

对于任何在它变得普遍之前偶然发现这一点的人来说,答案是省略引号,这样模块属性就不会被误认为是无效的 MIME 类型:

<script src="./path/to/file.js" type=module></script>

处理正确。

更新

<script type="module"></script>

现已支持 Chrome 和 Safari。

关于javascript - 使用 &lt;script type ="module"> 会触发 Chrome 中的弃用警告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41962278/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com