gpt4 book ai didi

javascript - 所有集合的 Firestore 列表

转载 作者:行者123 更新时间:2023-12-03 02:04:35 25 4
gpt4 key购买 nike

我有一个数组中的 json 字段名列表..

eventVariables = ['customerName','date','amount'].

我的 JSON 看起来像..

info = {
'customerName':'Ashish Maity',
'date': '14-04-18',
'amount':'500'
}

现在我想向该客户发送消息,我的消息模板如下:

smsBody = 'Dear customerName, we have received Rs.amount on date';

现在我的要求是我想用 info JSON 中的值替换 smsBody 中的变量(客户名称、金额和日期)。

My code:
for(let i=0; i<eventVariables.length; i++){
finalSmsBody = smsBody.replace(eventVariables[i],info[eventVariables[i]]);
};

My Output:
Dear customerName, we have received Rs.amount on 14-04-18

只有最后一个变量(日期)被 JSON 值替换。我希望所有变量都应该替换为各自的 JSON 值

最佳答案

试试这个代码

for(let i=0; i<eventVariables.length; i++){
smsBody= smsBody.replace(eventVariables[i],info[eventVariables[i]]);
};

关于javascript - 所有集合的 Firestore 列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49854908/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com