私はフィルタリングしたいオブジェクトを持っています。キー名によるオブジェクトのフィルタリング
query = {
"teststring-123": "true",
"teststring-12344566": "false"
}
$(query).each(function(index, value) {
$.each(value, function(i, v) {
if(i.indexOf('teststring-')==-1) {
// remove part of query object where index is this one
console.log(index)
}
});
});
私はこれをどのように扱うことができます。
query = {
"teststring-123": "true",
"teststring-12344566": "false",
test: "true"
}
が、私はフィルタリング後の私は持っているように、クエリをフィルタする:これは私が使用何ですか? (このデモでは、Object.keys()
は、すべてのキーを表示するために使用される)
$.each(query, function(key, value) {
if(key.indexOf('teststring-') == -1) {
delete query[key];
}
});
! –