基本上你想要的就是获得 id 来自URL。据我所知,这是不可能的。在我的情况下,我通过另一个这样的请求解决了它。
id
function main() { for(let i=0; i<input.length; i++) { input[i] = input[i][0].slice(0, 29); //takes short url let target = input[i] + '.json'; let xhr = new XMLHttpRequest(); xhr.open("GET", target); xhr.addEventListener("readystatechange", function() { if(this.readyState === this.DONE) { let json = JSON.parse(this.responseText); console.log(json['id']); ...
input 是你想知道的Trello网址 id 秒。
input