如何防止jquery导入两次webpack&打字稿?

时间:2017-12-03 20:10:22

标签: jquery typescript webpack

我收到此错误

Uncaught TypeError: $(...).dialog is not a function

原因似乎是因为我导入jquery两次。我无法找到解决这个问题的方法。

这是我完整的错误,其中有一些关于bootstrap的内容。

PopupSelectCard.ts:44 Uncaught TypeError: $(...).dialog is not a function
    at Object.PopupSelectCard (PopupSelectCard.ts:44)
    at Object.defineProperty.value (Index.ts:21)
    at __webpack_require__ (bootstrap 92cf533…:19)
    at Object.defineProperty.value (bootstrap 92cf533…:62)
    at bootstrap 92cf533…:62
PopupSelectCard @   PopupSelectCard.ts:44
Object.defineProperty.value @   Index.ts:21
__webpack_require__ @   bootstrap 92cf533…:19
Object.defineProperty.value @   bootstrap 92cf533…:62
(anonymous) @   bootstrap 92cf533…:62

这是我的webpack.config.js

var debug = process.env.NODE_ENV !== "production";
var webpack = require('webpack');

module.exports = {
    context: __dirname,//another dir +"/app"
    // devtool: debug ? "inline-sourcemap" : null,

    // Enable sourcemaps for debugging webpack's output.
    devtool: "source-map",

    entry: "./code/client/scripts/Index.ts",
    output: {
        path: __dirname + "/code/client/views",
        filename: "scripts.min.js"
    },
    plugins: debug ? [] : [
        new webpack.optimize.DedupePlugin(),
        new webpack.optimize.OccurenceOrderPlugin(),
        new webpack.optimize.UglifyJsPlugin({mangle: false, sourcemap: false}),
        new webpack.IgnorePlugin(/fs/),
    ],
    node: {
        fs: 'empty',
        child_process: 'empty',
    },

    resolve: {
        // Add '.ts' and '.tsx' as resolvable extensions.
        alias: {
            vue: 'vue/dist/vue.esm.js'
        },
        extensions: [".ts", ".tsx", ".js", ".json"]
    },

    module: {
        rules: [
            // All files with a '.ts' or '.tsx' extension will be handled by 'awesome-typescript-loader'.
            { test: /\.tsx?$/, loader: "awesome-typescript-loader" },

            // All output '.js' files will have any sourcemaps re-processed by 'source-map-loader'.
            { enforce: "pre", test: /\.js$/, loader: "source-map-loader" }
        ]
    },
};

这就是我在ts文件中导入的方式

import * as $ from "jquery";
import 'jquery-ui';

如果我不导入jquery,我会遇到编译器错误。

Cannot find name '$'.

我该如何解决这个问题?

1 个答案:

答案 0 :(得分:1)

所以我必须做几件事。

首先,npm install jquery-ui命令不能以可用的方式安装jquery-ui。它需要编译。所以我使用了npm install jquery-ui-dist

其次,只导入文件不起作用。我需要使用jqueryui

的所有.ts文件中的引用路径
///<reference path="../../../../node_modules/@types/jqueryui/index.d.ts"/>
import * as $ from "jquery";
import 'jquery-ui';

第三:我将以下代码添加到我的webpack.config.ts文件中。

var webpack = require('webpack');

module.exports = {
    ...
    plugins: debug ? [] : [
        new webpack.ProvidePlugin({
            jQuery: 'jquery',
            $: 'jquery',
            jquery: 'jquery'
        })
    ],
    resolve: {
        alias: {
            'jquery-ui': 'jquery-ui-dist/jquery-ui.js'
        }
    }
    ...
};

Forth我还添加了npm install @types/jquery&amp; npm install @types/jqueryui

我不确定哪个部分是问题,我在不同的版本中做了所有这些,直到它起作用。因此,如果有人想编辑我的答案,澄清每个部分是我的客人。