我想在'getStudentById'资源中动态访问资源的路径。对于例如如果该服务被称为“http://localhost:9090/studentfinder/student/0989898”。我想要'/ student / 0989898'部分。
const htCount = document.querySelectorAll('.filterDiv').length;
if (htCount > 9){
document.querySelector('#loadMore').classList.add('show'); // load more button shows
};
答案 0 :(得分:1)
您可以按如下方式从请求对象获取原始路径:
req.rawPath
这应该给出你想要的价值。
https://ballerina.io/learn/api-docs/ballerina/http.html#Request