在React JS中使用React-Select的CDN。

huangapple go评论65阅读模式
英文:

Using cdn of react-select in react js

问题

我想使用CDN引入react-select。我尝试将CDN下载到react-select中,但一直出现"select is not defined"错误。

我尝试下载了react-select的ZIP包,但我不知道如何使用它。

以下是我的操作:

<script src="https://cdnjs.cloudflare.com/ajax/libs/react-select/5.7.3/index-2ce68625.prod.min.js" type="module"></script>

在JS文件中,我想要进行导入操作。

英文:

I want to use react-select with cdn. I tried downloading cdn into react-select but I keep getting error as select is not defined.

I tried to download the zip package of react-select with but I dont know how to use it.

Following is how I did it.

 &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/react-select/5.7.3/index-2ce68625.prod.min.js&quot; type=&quot;module&quot;&gt;&lt;/script&gt;

and in js file I want to import.

答案1

得分: 0

你需要使用以下依赖项:

示例

&lt;script src=&quot;https://unpkg.com/react@16.7.0/umd/react.production.min.js&quot;&gt;&lt;/script&gt;
&lt;script src=&quot;https://cdn.jsdelivr.net/npm/emotion@9.2.12/dist/emotion.umd.min.js&quot;&gt;&lt;/script&gt;
&lt;script src=&quot;https://unpkg.com/react-dom@16.7.0/umd/react-dom.production.min.js&quot;&gt;&lt;/script&gt;
&lt;script src=&quot;https://unpkg.com/babel-standalone@6/babel.min.js&quot;&gt;&lt;/script&gt;
&lt;script src=&quot;https://unpkg.com/prop-types@15.5.10/prop-types.min.js&quot;&gt;&lt;/script&gt;
&lt;script src=&quot;https://unpkg.com/react-input-autosize@2.2.1/dist/react-input-autosize.min.js&quot;&gt;&lt;/script&gt;
&lt;script src=&quot;https://unpkg.com/react-select@2.1.2/dist/react-select.min.js&quot;&gt;&lt;/script&gt;
英文:

You have to use the dependencies

EXAMPLE

&lt;script src=&quot;https://unpkg.com/react@16.7.0/umd/react.production.min.js&quot;&gt;&lt;/script&gt;
&lt;script src=&quot;https://cdn.jsdelivr.net/npm/emotion@9.2.12/dist/emotion.umd.min.js&quot;&gt;&lt;/script&gt;
&lt;script src=&quot;https://unpkg.com/react-dom@16.7.0/umd/react-dom.production.min.js&quot;&gt;&lt;/script&gt;
&lt;script src=&quot;https://unpkg.com/babel-standalone@6/babel.min.js&quot;&gt;&lt;/script&gt;
&lt;script src=&quot;https://unpkg.com/prop-types@15.5.10/prop-types.min.js&quot;&gt;&lt;/script&gt;
&lt;script src=&quot;https://unpkg.com/react-input-autosize@2.2.1/dist/react-input-autosize.min.js&quot;&gt;&lt;/script&gt;
&lt;script src=&quot;https://unpkg.com/react-select@2.1.2/dist/react-select.min.js&quot;&gt;&lt;/script&gt;

huangapple
  • 本文由 发表于 2023年5月28日 18:14:08
  • 转载请务必保留本文链接:https://go.coder-hub.com/76350977.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定