1 Star 0 Fork 0

Redstone-1/strategy

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
策略模式.js 800 Bytes
一键复制 编辑 原始数据 按行查看 历史
// 客户列表
const currencyList = ['美元', '澳元', '泰铢', '欧元']
// 汇率
const rateList = {
'美元': 0.144881,
'澳元': 0.216258,
'泰铢': 5.3383,
'欧元': 0.143649
}
// 实际开发中,上述两个数据都是动态从后端获得的
const rateKeys = Object.keys(rateList)
// 策略容器
const strategy = {}
// 为每种汇率添加一个key,并赋值为一个计算对应价格的方法
rateKeys.forEach((item) => {
// 传入 RMB 价格作为基数
strategy[item] = (RMPPrice) => {
return RMPPrice * rateList[item]
}
})
function getAbroadPrice(RMBPrice = 100, target = '美元') {
console.log('目标价格是>>>>>', strategy[target](RMBPrice).toFixed(2));
return strategy[target](RMBPrice).toFixed(2)
}
getAbroadPrice(100, '美元') // 14.481...
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/redstone-1/strategy.git
git@gitee.com:redstone-1/strategy.git
redstone-1
strategy
strategy
master

搜索帮助