为了账号安全,请及时绑定邮箱和手机立即绑定

webpack引用路径出错了吗?

在别的js中引入'use strict';
var _mm = require('util/mm.js');

编写的_mm的模块'use strict';

var _mm = {

// 网络请求

  request : function(param){

  var _this = this;

     $.ajax({

        type     : param.method || 'get',

       url      : param.url    ||  '', 

        dataType : param.type   || 'json',

        data     : param.data   || '',

        success  : function(res){

        // 请求成功

              if(0 === res.status){

              typeof param.success === 'function' && param.success(res.data,res.msg);

              }

              // 没有登录状态,需要强制登录

              else if(10 === res.status){

                   _this.doLogin();

              }

              // 请求数据错误

              else if(1 === res.status){

                typeof param.error === 'function' && param.error(res.msg);

              }

        },

        error    : function(err){

          typeof param.error === 'function' && param.error(err.statusText);

        }


     });

  },

  //统一登录处理

  doLogin : function(){

  window.location.href = './login.html?redirect=' + encodeURIComponent(window.location.href);

  }

};


module.exports = _mm;

总是报这样的错误http://img1.sycdn.imooc.com//5993a4150001295d04450150.jpg


正在回答

1 回答

webpack.config.js中要给util文件夹配置别名

resolve: {
   alias: {
       util: __dirname + '/src/util'
   }
}

0 回复 有任何疑惑可以回复我~
#1

qq_时光如梭_03147320 提问者

非常感谢!
2017-08-16 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

webpack引用路径出错了吗?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信