繁体   English   中英

在 Webpack 5 中导出对象

[英]Exporting object in Webpack 5

我正在使用 Webpack 构建一个 JS 库并尝试导出一个对象。

import jwt_decode from "jwt-decode";

console.log(location.hash.replace('#', ''));

export var upstream = {
  user: {
    getUserDetails: () => {
      if (location.hash) {
        return jwt_decode(location.hash.replace('#', ''));
      } else {
        return null;
      }
    }
  }
}

在我的客户端代码中:

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>UpStream</title>
</head>

<body>
    <script src="http://localhost:8080/app.js"> <!--server is up, connects fine-->
    </script>
    <script>
        console.log(upstream);
    </script>
</body>

</html>

console.log(); 语句按预期工作,但我无法访问上游对象。 任何指针?

为了能够通过window或只是upstream访问upstream ,您需要确保将导出指定为libraryTarget'window'

希望这有帮助!

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM