gpt4 book ai didi

javascript - 解析Javascript SDK |将数组设置为未定义

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

我有一个数组,当数组中只剩下一项时,会导致数组设置为未定义。

基本上是这样的:

var array = {"example"}

为此,我这样说:

if (array[1] == NULL){
compiled = undefined;
}
info.add('assignment', compiled);
info.save(null, {
success:function(){//Whatever};

问题在于解析不会更新值为 undefined object 。

有什么帮助吗?

最佳答案

我遇到了这个问题并进行了研究,在此分享。

The problem is that parse does not update the object with the value undefined.

使用unset()可以清除解析对象的属性,然后使用save()更新属性。这是文件:Parse Object

在您的用例中,就像...

let array = ["example"]

if (array[1] == NULL) {
info.unset('assignment'); //set assignment to undefined
}
else {
//Other way to set assignment property
}
info.save(null, { success: function() { //Whatever };

希望这会有所帮助。

关于javascript - 解析Javascript SDK |将数组设置为未定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34075847/

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