p5.js中p5.Table的findRows()方法用于查找包含给定和值的所有行,并返回对这些行的引用。可以将方法搜索的列指定为参数。
用法:
findRows( value, column )
参数:此函数接受上述和以下描述的两个参数:
- value:它是一个字符串,它指定必须匹配的值。
- column:它是一个字符串或数字,表示要搜索的列的列名或列ID。
下面的示例说明了p5.js中的findRows()方法:
范例1:
function setup() {
createCanvas(500, 300);
textSize(16);
findQueryInput = createInput();
findQueryInput.position(30, 50);
getColBtn =
createButton("Get the matching rows");
getColBtn.position(30, 80);
getColBtn.mouseClicked(getFindResults);
// Create the table
table = new p5.Table();
// Add two columns
table.addColumn("fruit");
table.addColumn("price");
// Add some rows to the table
let newRow = table.addRow();
newRow.setString("fruit", "Apple");
newRow.setString("price", 100);
newRow = table.addRow();
newRow.setString("fruit", "Banana");
newRow.setString("price", 230);
newRow = table.addRow();
newRow.setString("fruit", "Grapes");
newRow.setString("price", 50);
newRow = table.addRow();
newRow.setString("fruit", "Apple");
newRow.setString("price", 45);
newRow = table.addRow();
newRow.setString("fruit", "Apple");
newRow.setString("price", 65);
showTable();
}
function getFindResults() {
clear();
let findQuery = findQueryInput.value();
// Get the row values using findRows()
if (findQuery != "") {
// Find the results in the column of 'fruit'
findResults =
table.findRows(findQuery, 'fruit');
if (findResults.length > 0) {
text("The rows that match the query are",
20, 120);
// Display the matched rows
for (let i = 0; i < findResults.length; i++) {
text(findResults[i].arr[0],
20, 140 + i * 20);
text(findResults[i].arr[1],
120, 140 + i * 20);
}
}
else text("No Results Found", 20, 120);
} else
text("The query string is empty", 20, 120);
text("Enter a string to find it" +
" in the table", 20, 20);
}
function showTable() {
clear();
// Display the total rows
// present in the table
text("There are " +
table.getRowCount() +
" rows in the table", 20, 120);
for (let r = 0; r < table.getRowCount(); r++)
for (let c = 0; c < table.getColumnCount(); c++)
text(table.getString(r, c),
20 + c * 100, 140 + r * 20);
text("Enter a string to find it" +
" in the table", 20, 20);
}
输出:
范例2:
function setup() {
createCanvas(500, 300);
textSize(16);
findQueryInput = createInput();
findQueryInput.position(30, 50);
getColBtn =
createButton("Get the matching rows");
getColBtn.position(30, 80);
getColBtn.mouseClicked(getFindResults);
// Create the table
table = new p5.Table();
// Add two columns
table.addColumn("fruit");
table.addColumn("price");
// Add some rows to the table
let newRow = table.addRow();
newRow.setString("fruit", "Apple");
newRow.setString("price", 100);
newRow = table.addRow();
newRow.setString("fruit", "Banana");
newRow.setString("price", 100);
newRow = table.addRow();
newRow.setString("fruit", "Grapes");
newRow.setString("price", 100);
newRow = table.addRow();
newRow.setString("fruit", "Apple");
newRow.setString("price", 50);
newRow = table.addRow();
newRow.setString("fruit", "Apple");
newRow.setString("price", 65);
showTable();
}
function getFindResults() {
clear();
let findQuery =
findQueryInput.value();
// Get the row values using findRows()
if (findQuery != "") {
// Find the results in the column of 'price'
findResults =
table.findRows(findQuery, 'price');
if (findResults.length > 0) {
text("The rows that match the query are",
20, 120);
// Display the matched rows
for (let i = 0; i < findResults.length; i++) {
text(findResults[i].arr[0],
20, 140 + i * 20);
text(findResults[i].arr[1],
120, 140 + i * 20);
}
}
else text("No Results Found", 20, 120);
} else
text("The query string is empty", 20, 120);
text("Enter a string to find it" +
" in the table", 20, 20);
}
function showTable() {
clear();
// Display the total rows
// present in the table
text("There are " +
table.getRowCount() +
" rows in the table",
20, 120);
for (let r = 0; r < table.getRowCount(); r++)
for (let c = 0; c < table.getColumnCount(); c++)
text(table.getString(r, c),
20 + c * 100,
140 + r * 20);
text("Enter a string to find it" +
" in the table", 20, 20);
}
输出:
在线编辑: https://editor.p5js.org/
环境设置: https://www.geeksforgeeks.org/p5-js-soundfile-object-installation-and-methods/
参考: https://p5js.org/reference/#/p5.Table/findRows
相关用法
- p5.js Table set()用法及代码示例
- JQuery get()用法及代码示例
- JQuery odd()用法及代码示例
- Collect.js all()用法及代码示例
- JQuery is()用法及代码示例
- Lodash _.xor()用法及代码示例
- JQuery before()用法及代码示例
- HTML DOM before()用法及代码示例
- HTML DOM after()用法及代码示例
- HTML DOM contains()用法及代码示例
- Collect.js avg()用法及代码示例
- JQuery css()用法及代码示例
- JQuery off()用法及代码示例
- JQuery even()用法及代码示例
- JQuery now()用法及代码示例
- JQuery die()用法及代码示例
- JQuery map()用法及代码示例
- Lodash _.nth()用法及代码示例
- JQuery add()用法及代码示例
注:本文由纯净天空筛选整理自sayantanm19大神的英文原创作品 p5.Table findRows() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。