webpack引用路径出错的了吗

在别的js中引入'use strict';
var _mm = require('util/mm.js');http://img.mukewang.com/5993a4a00001295d04450150.jpg

编写的_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;

总是报这样的错误


qq_时光如梭_03147320
浏览 1339回答 1
1回答

MR帽子先生

你的路由错了找不到util/mm.js,检查一下你的components有没有注册。希望对你有帮助,祝你学习愉快。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript