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

webpack引用路径出错的了吗

webpack引用路径出错的了吗

qq_时光如梭_03147320 2017-08-16 09:49:54
在别的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;总是报这样的错误
查看完整描述

1 回答

已采纳
?
MR帽子先生

TA贡献245条经验 获得超106个赞

你的路由错了找不到util/mm.js,检查一下你的components有没有注册。

希望对你有帮助,祝你学习愉快。

查看完整回答
1 反对 回复 2017-08-16
  • 1 回答
  • 0 关注
  • 1330 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信