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

运行的时候提示export 是保留字段,请老师讲解下export

(function(){var _userId = 23492; var _typeId = 'item';var export = {};    function converter(userId){return _userId;}    export.getUserId = function(){return converter(_userId);}    export.getTypeId = function(){return _typeId;}    window.export = export; }());老师 这个例子好像有点问题,运行的时候提示export 是保留字段

正在回答

3 回答

export 是关键字,改成这样就可以了。你试试。

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

(function(){
  var _userId = 23492;
  var _typeId = 'item';
  var export1  = {};
 
  function converter(userId){
    return +userId;
    
  }
 
  export1.getUserId = function(){
    return converter(_userId);
  }
  export1.getTypeId=function(){
    return _typeId;
  }
  window.export=export1;
}());
 window.export.getUserId();
 window.export.getTypeId();
  window.export._userId;
 window.export._typeId;
 window.export.converter;
 

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

举报

0/150
提交
取消

运行的时候提示export 是保留字段,请老师讲解下export

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