web-dev-qa-db-ja.com

angular-6.xにアップグレードすると、「Uncaught ReferenceError:global is not defined」と表示されます

プロジェクトをangle-5.xからangle-6.xにアップグレードすると、次のエラーが発生し始め、ダミーのグローバル変数の作成でさえここに示すように機能しません Angular 6 Auth0-global not defined

エラーは次のとおりです。

Uncaught ReferenceError: global is not defined
    at Object../node_modules/has-binary2/index.js (index.js:10)
    at __webpack_require__ (bootstrap:81)
    at Object../node_modules/socket.io-parser/index.js (index.js:8)
    at __webpack_require__ (bootstrap:81)
    at Object../node_modules/socket.io-client/lib/index.js (index.js:7)
    at __webpack_require__ (bootstrap:81)
    at Object../src/app/app4pc/apiConnection/services/ApiConnectionServer.ts (auth.interceptor.ts:8)
    at __webpack_require__ (bootstrap:81)
    at Object../src/app/app4pc/apiConnection/toServer.module.ts (ApiConnectionServer.ts:11)
    at __webpack_require__ (bootstrap:81)

これを解決した後、次のエラーが発生します:

Uncaught ReferenceError: process is not defined
    at Object../node_modules/process-nextick-args/index.js (index.js:3)
    at __webpack_require__ (bootstrap:81)
    at Object../node_modules/readable-stream/lib/_stream_readable.js (_stream_readable.js:26)
    at __webpack_require__ (bootstrap:81)
    at Object../node_modules/readable-stream/readable-browser.js (readable-browser.js:1)
    at __webpack_require__ (bootstrap:81)
    at Object../node_modules/simple-peer/index.js (index.js:7)
    at __webpack_require__ (bootstrap:81)
    at Object../src/app/util/services/call.services.ts (notification.service.ts:12)
    at __webpack_require__ (bootstrap:81)    

そして、継続します。

40
Atikur Rahman

開始ページに次のコードを追加します。 index.html

var global = global || window;
var Buffer = Buffer || [];
var process = process || {
  env: { DEBUG: undefined },
  version: []
};

例:

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>Client</title>
  <base href="/">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="icon" type="image/x-icon" href="favicon.ico">
  <script>
    var global = global || window;
    var Buffer = Buffer || [];
    var process = process || {
      env: { DEBUG: undefined },
      version: []
    };
  </script>
</head>
<body>
  <app-root>
    <div class="loader"></div>
  </app-root>
</body>
</html>

上記は、ハイブリッドアプリ(Node環境)およびブラウザーで機能します

  • 「Uncaught ReferenceError:global is not defined」の場合:

    var global = global || window;
    
  • 「Uncaught ReferenceError:Buffer is not defined」の場合:

    var Buffer = Buffer || [];
    
  • 「Uncaught ReferenceError:process is not defined」の場合:

    var process = process || {
      env: { DEBUG: undefined }
    }
    
  • 「Uncaught TypeError:undefinedのプロパティ 'slice'を読み取れません」:

    var process = process || {
      env: { DEBUG: undefined },
      version: []
    };
    
60
Akhilesh Kumar

この行をpolyfills.tsに追加すると、ノードのグローバルエラーを解決するはずです

(window as any).global = window;

解決策はこれで言及されていました angular-cli issue thred

66
Vojtech

場合、targetがwebpackのnodetarget: 'node')、"Can't resolve 'fs'を修正するため。その後、次のエラーが発生しますFix: "Uncaught ReferenceError: global is not defined"次のようにnode: { global: true, fs: 'empty' }します。 ボーナス:エラー"Uncaught ReferenceError: exports is not defined".が発生した場合、単にlibraryTarget: 'umd'を追加します。完全なwebpack構成コードは次のとおりです。

const webpackConfig = {
  node: { global: true, fs: 'empty' }, // Fix: "Uncaught ReferenceError: global is not defined", and "Can't resolve 'fs'".
  output: {
    libraryTarget: 'umd' // Fix: "Uncaught ReferenceError: exports is not defined".
  }
};

module.exports = webpackConfig; // Export all custom Webpack configs.

ここで多くのソリューションが提案されています: https://github.com/angular/angular-cli/issues/816

0