经典的ASP xmlDOM没有任何结果?

时间:2015-06-26 11:11:24

标签: asp-classic wikipedia-api xmldom

此代码不会响应任何结果。我不知道为什么?你能救我吗?

<%
    Set xmlDOM = Server.CreateObject("Microsoft.XMLDOM")
    xmlDOM.async = False
    xmlDOM.setProperty "ServerHTTPRequest", True
    xmlDOM.Load("https://tr.wikipedia.org/w/api.php?format=xml&maxage=600&smaxage=1200&action=opensearch&search=fizik&limit=10")
    Set itemList = XMLDom.SelectNodes("Item")
    For Each itemAttrib In itemList
        newsDate    =   itemAttrib.SelectSingleNode("Description").text
%>
<%=newsDate%>
<%
    Next
    Set xmlDOM = Nothing
    Set itemList = Nothing
%>

抱歉我的英语不好。

0 个答案:

没有答案