我遇到了以下问题,请帮帮我。在AngularJS应用中,我正在向' / abc'发送$ http.get请求。网址。我收到的数据是html的形式。我应该解析html并从中获取有用的数据。现在的问题是,在原始网址' / abc'中,有很多"文件夹的图像"。
<img src = "/icons/folder.gif" alt = [DIR]">
我以html的形式收到回复,但在进入成功回调后,正在向“currentPath / icons / folder.gif”发出其他请求。这是自动发生的。如何阻止这些请求?
用$ http get
编写的代码_commonModule.server.http($http, '/abc')
.success(function(response, status, headers, config) {
pageData = parseHTML(response);
console.log("hi");
})
.error(function(errResp) {
});
parseHTML函数将html转换为json数据。在控制台中,&#34; hi&#34;正在打印,然后我得到了 - &#34; GET http://unixdev:5678/icons/folder.gif 404(未找到)&#34;
最后在parseHTML函数中,我正在创建一个虚拟dom元素并解析它
var tempData = document.createElement('html');
tempData.innerHTML = response;
var numberOfRows = tempData.getElementsByTagName("tr").length;