이 코드가 있다고 가정하십시오.
var myArray = new Object();
myArray["firstname"] = "Bob";
myArray["lastname"] = "Smith";
myArray["age"] = 25;
이제 “lastname”을 제거하고 싶습니까? ….
myArray["lastname"].remove()
?
(요소의 수가 중요하고 물건을 깨끗하게 유지하기 위해 요소가 없어야합니다.)
답변
JavaScript의 객체는 키 (속성)를 값에 매핑하는 연관 배열로 생각할 수 있습니다.
JavaScript의 객체에서 속성을 제거하려면 delete
연산자 를 사용하십시오 .
const o = { lastName: 'foo' }
o.hasOwnProperty('lastName') // true
delete o['lastName']
o.hasOwnProperty('lastName') // false
때 참고 delete
의 인덱스 속성에 적용 Array
, 당신이 만듭니다 인구 밀도 배열 (예. 누락 된 인덱스 배열).
의 인스턴스로 작업 할 때 Array
당신은 인구 밀도가 배열을 만들지 않으려면, – 당신은 일반적으로하지 않습니다 – 당신은 사용해야 Array#splice
하거나 Array#pop
.
delete
JavaScript 의 연산자는 메모리를 직접 비우지 않습니다. 그 목적은 객체에서 속성을 제거하는 것입니다. 속성의 존재가 삭제 한 경우 물론, 객체에 유일하게 남아있는 참조를 보유 o
하고 o
이후 쓰레기는 일반적인 방법으로 수집됩니다.
답변
JavaScript의 모든 객체는 해시 테이블 / 연관 배열로 구현됩니다. 따라서 다음은 동일합니다.
alert(myObj["SomeProperty"]);
alert(myObj.SomeProperty);
그리고 이미 표시된 바와 같이 delete
키워드 를 통해 객체에서 속성을 “제거”하면 두 가지 방법으로 사용할 수 있습니다.
delete myObj["SomeProperty"];
delete myObj.SomeProperty;
추가 정보가 도움이 되길 바랍니다 …
답변
더 없다 – 이전 답변 없음 자바 스크립트로 시작하는 연관 배열을하지 않는다는 사실 해결하지 array
, 유형 등 참조 typeof
.
Javascript에는 동적 속성이있는 객체 인스턴스가 있습니다. 속성이 Array 객체 인스턴스의 요소와 혼동되면 Bad Things ™가 발생합니다.
문제
var elements = new Array()
elements.push(document.getElementsByTagName("head")[0])
elements.push(document.getElementsByTagName("title")[0])
elements["prop"] = document.getElementsByTagName("body")[0]
console.log("number of elements: ", elements.length) // returns 2
delete elements[1]
console.log("number of elements: ", elements.length) // returns 2 (?!)
for (var i = 0; i < elements.length; i++)
{
// uh-oh... throws a TypeError when i == 1
elements[i].onmouseover = function () { window.alert("Over It.")}
console.log("success at index: ", i)
}
해결책
폭파되지 않는 범용 제거 기능을 사용하려면 다음을 사용하십시오.
Object.prototype.removeItem = function (key) {
if (!this.hasOwnProperty(key))
return
if (isNaN(parseInt(key)) || !(this instanceof Array))
delete this[key]
else
this.splice(key, 1)
};
//
// Code sample.
//
var elements = new Array()
elements.push(document.getElementsByTagName("head")[0])
elements.push(document.getElementsByTagName("title")[0])
elements["prop"] = document.getElementsByTagName("body")[0]
console.log(elements.length) // returns 2
elements.removeItem("prop")
elements.removeItem(0)
console.log(elements.hasOwnProperty("prop")) // returns false as it should
console.log(elements.length) // returns 1 as it should
답변
객체 만 삭제하지만 배열 길이는 동일하게 유지합니다.
제거하려면 다음과 같은 작업을 수행해야합니다.
array.splice(index, 1);
답변
허용되는 답변은 정확하지만 왜 작동하는지에 대한 설명이 없습니다.
우선, 당신의 코드는이 사실 반영해야 하지 배열을 :
var myObject = new Object();
myObject["firstname"] = "Bob";
myObject["lastname"] = "Smith";
myObject["age"] = 25;
모든 객체 ( Array
s )를 이런 식으로 사용할 수 있습니다. 그러나 객체에서 작동 할 표준 JS 배열 함수 (pop, push, …)를 기대하지 마십시오!
허용 된 답변에서 말했듯이 delete
객체에서 항목을 제거하는 데 사용할 수 있습니다 .
delete myObject["lastname"]
객체 (연관 배열 / 사전)를 사용하거나 배열 (지도)을 사용하려는 경로를 결정해야합니다. 두 가지를 섞지 마십시오.
답변
메소드 splice
를 사용 하여 객체 배열에서 항목을 완전히 제거하십시오.
Object.prototype.removeItem = function (key, value) {
if (value == undefined)
return;
for (var i in this) {
if (this[i][key] == value) {
this.splice(i, 1);
}
}
};
var collection = [
{ id: "5f299a5d-7793-47be-a827-bca227dbef95", title: "one" },
{ id: "87353080-8f49-46b9-9281-162a41ddb8df", title: "two" },
{ id: "a1af832c-9028-4690-9793-d623ecc75a95", title: "three" }
];
collection.removeItem("id", "87353080-8f49-46b9-9281-162a41ddb8df");
답변
다른 답변에서 언급했듯이 사용중인 것은 Javascript 배열이 아니라 Javascript 객체입니다.이 객체는 모든 키가 문자열로 변환된다는 점을 제외하고 다른 언어의 연관 배열과 거의 유사합니다. 새 지도 는 키를 원래 유형으로 저장합니다.
객체가 아닌 배열이있는 경우 배열의 .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';
});