你如何从 React 中的 cdn/script 标签导入一个 javascript 包?

IT技术 javascript html node.js reactjs ecmascript-6
2021-03-26 08:28:44

我想在 React 中导入这个 javascript 包

<script src="https://cdn.dwolla.com/1/dwolla.js"></script>

但是,没有 NPM 包,所以我不能像这样导入它:

import dwolla from 'dwolla'

或者

import dwolla from 'https://cdn.dwolla.com/1/dwolla.js'

所以每当我尝试

dwolla.configure(...)

我收到一条错误消息,说 dwolla 未定义。我该如何解决这个问题?

谢谢

5个回答

转到 index.html 文件并导入脚本

<script src="https://cdn.dwolla.com/1/dwolla.js"></script>

然后,在导入 dwolla 的文件中,将其设置为一个变量

const dwolla = window.dwolla;
如果文件是 firebase-app.js 怎么办?
2021-06-10 08:28:44
@technazi 试试window["firebase-app"]或者只是做一个console.log(window)并搜索您的图书馆。
2021-06-10 08:28:44

这个问题越来越老了,但我找到了一种使用react-helmet来解决这个问题的好方法,我觉得它更符合 React 的工作方式。我今天用它来解决一个类似于你的 Dwolla 问题的问题:

import React from "react";
import Helmet from "react-helmet";

export class ExampleComponent extends React.Component {
    constructor(props) {
        super(props);

        this.state = {
            myExternalLib: null
        };

        this.handleScriptInject = this.handleScriptInject.bind(this);
    }

    handleScriptInject({ scriptTags }) {
        if (scriptTags) {
            const scriptTag = scriptTags[0];
            scriptTag.onload = () => {
                // I don't really like referencing window.
                console.log(`myExternalLib loaded!`, window.myExternalLib);
                this.setState({
                    myExternalLib: window.myExternalLib
                });
            };
        }
    }

    render() {
        return (<div>
            {/* Load the myExternalLib.js library. */}
            <Helmet
                script={[{ src: "https://someexternaldomain.com/myExternalLib.js" }]}
                // Helmet doesn't support `onload` in script objects so we have to hack in our own
                onChangeClientState={(newState, addedTags) => this.handleScriptInject(addedTags)}
            />
            <div>
                {this.state.myExternalLib !== null
                    ? "We can display any UI/whatever depending on myExternalLib without worrying about null references and race conditions."
                    : "myExternalLib is loading..."}
            </div>
        </div>);
    }
}

使用this.state意味着 React 将自动监视 myExternalLib 的值并适当地更新 DOM。

信用:https : //github.com/nfl/react-helmet/issues/146#issuecomment-271552211

您不能从 URL 要求或导入module。

ES6:从 URL 导入module

您可以做的是发出 HTTP 请求以获取脚本内容并执行它,如在 Node.js 中如何从 URL 请求的答案

但这将是一个糟糕的解决方案,因为您的代码编译将依赖于外部 HTTP 调用。

一个好的解决方案是将文件下载到您的代码库中并从那里导入。如果文件没有太大变化,您可以将文件提交给 git 并且允许这样做。否则,构建步骤可能会下载该文件。

对于typescript开发人员

const newWindowObject = window as any; // 将其转换为任何类型

let pushNotification = newWindowObject.OneSignal; // 现在可以在typescript中访问 OneSignal 对象而不会出错

在你的 index.html 中添加 script 标签,如果你使用的是 Webpack,你可以使用这个 webpack 插件https://webpack.js.org/plugins/provide-plugin/