根据帮助文档写了一个控件参数传参,price为8.95时能查出来数据,那为空的时候怎么查全表呢?我上边的写法是错误的,另外这是什么程序呢? var books = $.store.book; var rowCount = books.length; var table = []; var column = []; books.forEach(function(value, index) { var row = []; if('${price}'!=0){ if (value.price =='${price}') { for (var key in value) { row.push(value[key]); column.push(key); } table.push(row); } } }); return merge(table, unique(column)); |