2016-08-23 338 views
1

我們使用TypeScript,webpack和ArcGIS JS API將自定義npm包our-map包裝爲一個React組件的esri映射。我們已經確認該模塊按照預期在模塊內的測試頁面上工作。也就是說,我們可以正確顯示我們的React Map Component並獲取Web地圖。將our-map npm包寫入文件共享,以便我們可以將npm安裝到我們的其他應用程序中。未捕獲的ReferenceError:__WEBPACK_EXTERNAL_MODULE_XX__未定義

我們有npm install ed our-mapour-app,另一個TypeScript應用程序。我們使用webpack捆綁應用程序。但是,在運行時我們收到以下錯誤。

Uncaught ReferenceError: __WEBPACK_EXTERNAL_MODULE_61__ is not defined 

雖然在鉻調試這一點,我們找到有問題的模塊是

module.exports = __WEBPACK_EXTERNAL_MODULE_61__; 

////////////////// 
// WEBPACK FOOTER 
// external "esri/arcgis/utils" 
// module id = 61 
// module chunks = 0 

如果我們從our-map模塊移除esri/arcgis/utils模塊並重新發布,我們有一個類似的錯誤,但是,它引用了下一個ESRI模塊。

our-app的代碼是:

的index.html

<!DOCTYPE html> 
<html> 
    <head> 
    <title>Our Application</title> 
    </head> 

    <body> 
    <div id="header"></div> 
    <div id="content"></div> 
    <div id="footer"></div> 
    <script src="https://js.arcgis.com/3.16/"></script> 
    <script> 
      require(["dist/main.bundle.js"], function (main) {}); 
     </script> 
    </body> 
</html> 

app.tsx 爲了清楚而簡化

import * as React from "react"; 
import {MapContainer} from "our-map"; 

export const App = (props: IApp) => { 
    return <div style={{height: "100%"}}> 
     <div style={mapStyle}> 
      <MapContainer /> 
     </div> 
    </div>; 
}; 

個webpack.config.js

var webpack = require("webpack"); 

module.exports = { 
    entry: { 
     main: ['./src/app/main.ts', 'esri', 'esri/map', 'esri/urlUtils', 'esri/geometry/Point', 'esri/arcgis/utils'] 
    }, 
    output: { 
     filename: 'dist/[name].bundle.js' 
    }, 
    resolve: { 
     extensions: ['', '.webpack.js', '.web.js', '.ts', '.tsx', '.js'] 
    }, 
    module: { 
     loaders: [ 
      //typescript 
      { 
       test: /\.tsx?$/, 
       loader: 'ts-loader' 
      }, 
      // css 
      { 
       test: /\.css$/, 
       loader: "style-loader!css-loader" 
      }, 
      // images 
      { 
       test: /\.png$/, 
       loader: "url-loader", 
       query: { mimetype: "image/png" } 
      }, 
      // fonts 
      { 
       test: /\.woff(2)?(\?v=[0-9]\.[0-9]\.[0-9])?$/, 
       loader: "url-loader?limit=10000&name=dist/fa/[hash].[ext]&mimetype=application/font-woff" 
      }, 
      { 
       test: /\.(ttf|eot|svg)(\?v=[0-9]\.[0-9]\.[0-9])?$/, 
       loader: "file-loader?name=dist/fa/[hash].[ext]" 
      } 
     ] 
    }, 
    externals: [ 
     function(context, request, callback) { 
      if (/^dojo/.test(request) || 
       /^dijit/.test(request) || 
       /^esri/.test(request) 
      ) { 
       return callback(null, "amd " + request); 
      } 
      callback(); 
     } 
    ], 
    devtool: 'source-map' 
}; 

任何想法,以什麼可能會造成這個問題,如何解決呢?

回答

2

解決的辦法是設置libraryTarget: 'amd'在webpack.config.js文件中像這樣:

output: { 
    filename: 'dist/[name].bundle.js', 
    libraryTarget: 'amd' 
}, 
相關問題