IN Operator equivalence in indexedDB
问题 I want to execute this query select * from properties where propertyCode IN ("field1", "field2", "field3") How can I achieve this in IndexedDB I tried this thing getData : function (indexName, params, objectStoreName) { var defer = $q.defer(), db, transaction, index, cursorRequest, request, objectStore, resultSet, dataList = []; request = indexedDB.open('test'); request.onsuccess = function (event) { db = request.result; transaction = db.transaction(objectStoreName); objectStore = transaction