我正在使用filestack,当我上传图片时,它会为上传的图片创建一个唯一的网址。我想要获取变量的URL的特定部分。
https://www.filestackapi.com/api/file/qiXTZ0dQUGPQRG4GH0Cy
https://www.filestackapi.com/api/file/ “qiXTZ0dQUGPQRG4GH0Cy”
上面的Url属于一个图片,但是我想把引用的部分保存到变量中,怎么做?
答案 0 :(得分:3)
您可以在网址中搜索/
的最后一个索引,然后从该点开始生成网址substring
。
var url = 'https://www.filestackapi.com/api/file/qiXTZ0dQUGPQRG4GH0Cy';
var lastIndex = url.lastIndexOf("/");
var searched = url.substring(lastIndex + 1);
// searched = qiXTZ0dQUGPQRG4GH0Cy