フィルタリングしたいオブジェクトがあります。これは私が使用するものです:
query = {
"teststring-123": "true",
"teststring-12344566": "false",
test: "true"
}
クエリをフィルタリングして、フィルタリング後に次のようにします。
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)
}
});
});
どうすればこれを処理できますか?