假设我有这样的代码:
var myArray = new Object();
myArray["firstname"] = "Bob";
myArray["lastname"] = "Smith";
myArray["age"] = 25;
现在如果我想删除“lastname”?....有什么等价物吗 (“姓”)myArray .remove () ?
(我需要元素消失,因为元素的数量很重要,我想保持东西干净。)
假设我有这样的代码:
var myArray = new Object();
myArray["firstname"] = "Bob";
myArray["lastname"] = "Smith";
myArray["age"] = 25;
现在如果我想删除“lastname”?....有什么等价物吗 (“姓”)myArray .remove () ?
(我需要元素消失,因为元素的数量很重要,我想保持东西干净。)
当前回答
在Airbnb风格指南(ECMAScript 7)中有一种优雅的方式来做到这一点:
const myObject = {
a: 1,
b: 2,
c: 3
};
const { a, ...noA } = myObject;
console.log(noA); // => { b: 2, c: 3 }
版权:https://codeburst.io/use-es2015-object-rest-operator-to-omit-properties-38a3ecffe90
其他回答
在Airbnb风格指南(ECMAScript 7)中有一种优雅的方式来做到这一点:
const myObject = {
a: 1,
b: 2,
c: 3
};
const { a, ...noA } = myObject;
console.log(noA); // => { b: 2, c: 3 }
版权:https://codeburst.io/use-es2015-object-rest-operator-to-omit-properties-38a3ecffe90
如果,出于某种原因,删除键不起作用(就像它对我不起作用一样),你可以将它拼接出来,然后过滤未定义的值:
// To cut out one element via arr.splice(indexToRemove, numberToRemove);
array.splice(key, 1)
array.filter(function(n){return n});
不要尝试连接它们,因为拼接返回删除的元素;
虽然公认的答案是正确的,但它没有解释为什么它是有效的。
首先,你的代码应该反映这不是一个数组的事实:
var myObject = new Object();
myObject["firstname"] = "Bob";
myObject["lastname"] = "Smith";
myObject["age"] = 25;
注意,所有对象(包括数组)都可以这样使用。但是,不要指望标准JavaScript数组函数(pop, push等)也能在对象上工作!
正如在accept answer中所说,你可以使用delete从对象中删除条目:
delete myObject["lastname"]
您应该决定采用哪一种方法—使用对象(关联数组/字典)或使用数组(映射)。永远不要把他们两个混在一起。
正如其他答案所指出的,您使用的不是JavaScript数组,而是JavaScript对象,它的工作原理几乎类似于其他语言中的关联数组,只是所有键都被转换为字符串。新的Map以原始类型存储键。
如果你有一个数组而不是一个对象,你可以使用数组的.filter函数,返回一个不删除你想要删除的项的新数组:
var myArray = ['Bob', 'Smith', 25];
myArray = myArray.filter(function(item) {
return item !== 'Smith';
});
如果您使用的是较旧的浏览器和jQuery, jQuery有一个$。Grep方法,工作原理类似:
myArray = $.grep(myArray, function(item) {
return item !== 'Smith';
});
您正在使用Object,并且您一开始没有关联数组。使用关联数组,添加和删除项如下所示:
Array.prototype.contains = function(obj)
{
var i = this.length;
while (i--)
{
if (this[i] === obj)
{
return true;
}
}
return false;
}
Array.prototype.add = function(key, value)
{
if(this.contains(key))
this[key] = value;
else
{
this.push(key);
this[key] = value;
}
}
Array.prototype.remove = function(key)
{
for(var i = 0; i < this.length; ++i)
{
if(this[i] == key)
{
this.splice(i, 1);
return;
}
}
}
// Read a page's GET URL variables and return them as an associative array.
function getUrlVars()
{
var vars = [], hash;
var hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&');
for(var i = 0; i < hashes.length; i++)
{
hash = hashes[i].split('=');
vars.push(hash[0]);
vars[hash[0]] = hash[1];
}
return vars;
}
function ForwardAndHideVariables() {
var dictParameters = getUrlVars();
dictParameters.add("mno", "pqr");
dictParameters.add("mno", "stfu");
dictParameters.remove("mno");
for(var i = 0; i < dictParameters.length; i++)
{
var key = dictParameters[i];
var value = dictParameters[key];
alert(key + "=" + value);
}
// And now forward with HTTP-POST
aa_post_to_url("Default.aspx", dictParameters);
}
function aa_post_to_url(path, params, method) {
method = method || "post";
var form = document.createElement("form");
// Move the submit function to another variable
// so that it doesn't get written over if a parameter name is 'submit'
form._submit_function_ = form.submit;
form.setAttribute("method", method);
form.setAttribute("action", path);
for(var i = 0; i < params.length; i++)
{
var key = params[i];
var hiddenField = document.createElement("input");
hiddenField.setAttribute("type", "hidden");
hiddenField.setAttribute("name", key);
hiddenField.setAttribute("value", params[key]);
form.appendChild(hiddenField);
}
document.body.appendChild(form);
form._submit_function_(); // Call the renamed function
}