javascript - Wie können sich Methoden in ES6-Modulen gegenseitig aufrufen?
phpcn_u1582
phpcn_u1582 2017-05-19 10:39:01
0
2
442

util/common.js

//定义一个ES6的模块,对外暴露很多公共的方法
export default {
    isEmpty(obj){
        for (var name in obj){
            return false;
        }
        return true;
    },
    isEmptyStr(str){
        if(str == null || str == undefined || str == ''){
            return true;
        }else{
            return false;                
        }
    },
    initUser(){
        //假设这里需要调用同模块中的isEmpty()来进行非空判断,该怎么调用???
    },
}
phpcn_u1582
phpcn_u1582

Antworte allen(2)
滿天的星座

把它当成一个对象, 用this

过去多啦不再A梦
  • common.js

function isEmpty(obj){
    for (var name in obj){
        return false;
    }
    return true;
}
function initUser(){
    isEmpty(obj)
    ...
}
export {isEmpty,initUser}
  • xxx.js

import {isEmpty,initUser} from './common'

而且感觉你的common.js是要作为一个通用脚本吧
直接import './common.js' 就好啊

Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage