📜  p5.js | getURLPath()函数

📅  最后修改于: 2022-05-13 01:56:54.112000             🧑  作者: Mango

p5.js | getURLPath()函数

getURLPath()函数用于将当前 URL 路径作为数组返回,其中每个项目都是 URL 路径的一部分。可以遍历此数组以分别访问路径的每个部分。

句法:

getURLPath()

参数:此函数不接受任何参数。

返回值:它返回路径组件的数组。

下面的示例说明了 p5.js 中的getURLPath()函数

例子:

function setup() {
  createCanvas(500, 200);
  
  // get the url path as array
  urlPathArray = getURLPath();
  
  textSize(16);
  
  text("The URL is: http://example.com/path1/path2/path3/index.html", 10, 20);
  
  text("The URL paths are: ", 10, 40);
  // loop through the array to display
  // the array items
  for (let i = 0; i < urlPathArray.length; i++) {
    text('- ' + urlPathArray[i], 10, i * 15 + 60);
  }
  
  // display the array in the console
  console.log(urlPathArray);
}

输出:

  • 显示数组的内容:
    路径阵列显示
  • 在控制台中查看阵列:
    路径数组控制台

在线编辑器: https://editor.p5js.org/
环境设置: https://www.geeksforgeeks.org/p5-js-soundfile-object-installation-and-methods/

参考: https://p5js.org/reference/#/p5/getURLPath