Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
2.3k views
in Technique[技术] by (71.8m points)

js编程范式的问题。

业务中遇到资源分配,资源计算的要求;先把资源计算出来,然后才能继续分配

// tool.js
export function executeResouce(arg) {
    return resouce
}

export function assign (resouce) {

}


// 业务代码

const resouce = executeResouce(arg);
const resource = assign(resouce);

另一种方式

// tool.js
export function executeResouce(arg) {
    return resouce
}

export function assign (resouce) {
    const resouce = executeResouce()
    // ...
    return 
}


// 业务代码

const resource = assign(arg);

这两种代码组织方式那种更好呢?为什么


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

第一种更灵活吧


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...