如何使用Nativescript从链接获取ID

时间:2018-12-14 15:41:32

标签: javascript angular nativescript

如何获取此URL的ID: http://domainpertest.tk/reset/11E89887FABBC1D

因此,当我单击此链接时,我要获取此11E89887FABBC1D

有什么想法吗?

3 个答案:

答案 0 :(得分:1)

您可以使用正则表达式或使用url.substring(url.lastIndexOf("/"), url.length-1)提取子字符串

答案 1 :(得分:1)

尝试使用javascript split方法获取此ID。

var str = "http://domainpertest.tk/reset/11E89887FABBC1D";
var res = str.split("/");
console.log(res[res.length-1]);

答案 2 :(得分:0)

尝试一下:

function findIdInUrl() {
  var url="http://domainpertest.tk/reset/11E89887FABBC1D";
  return url.slice(url.lastIndexOf('/')+1);
}