当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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); 
}

输出:

  • 显示数组的内容:
    path-array-display
  • 在控制台中查看阵列:
    path-array-console

在线编辑:
环境设置:

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



相关用法


注:本文由纯净天空筛选整理自sayantanm19大神的英文原创作品 p5.js | getURLPath() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。