gpt4 book ai didi

javascript - 扩展 Json 声明

转载 作者:行者123 更新时间:2023-11-28 21:26:11 25 4
gpt4 key购买 nike

所以我有这个 Json:

var json = 
{
id : GetGUIDValue(),
shockbps: bps,
shockIncrements: incs
};

设置此值后会调用另一个方法并传入此 Json:

function GetPrepayment(json)

但是我有一个 bool 值,我想将其包含在 Json 中(该值不能包含在使用此 Json 的其他方法中,只能包含在当前方法中)。如何在此方法调用的开头添加此 bool 值,以便每次调用此方法时,都会添加或更改 bool 值(如果已经存在)。

谢谢!

最佳答案

var some_obj = {
id : GetGUIDValue(),
shockbps: bps,
shockIncrements: incs
};

function GetPrepayment( obj ) {
obj.myBooleanProperty = true;

// ...rest of the function code
}

GetPrepayment( some_obj );

关于javascript - 扩展 Json 声明,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4994828/

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