我試圖從本網站http://www.whoscored.com/regions/252/tournaments/2/england-premier-league如何從Datastore.prime使用VBA
抽取數據當我使用檢查元素我看到的數據以表格形式如上圖下方抽取數據。
的源代碼在這個格式的數據。
DataStore.prime( 'stagefixtures',$ .extend({級ID:12496,isAggregate:假},calendar.parameter()),〔959688,1,「週一,十二月'2015','20:00',13,'Arsenal',0,167,'曼城',0,'2:1','2:0',1,1,'FT','1',0 ,1,112,0] ,[959683,4,'2015年12月26日星期六','12:45',96','斯托克',0,32,'曼聯',0,'vs',, 0, 1,' - 1',0,1,13,0] ,[959615,4'2015年12月26日星期六'''15:00''24'Aston Villa',0,29'West Ham',0,'vs',, 0,1 ,,' - 1',0,1,6,0] ,[959625,4,'2015年12月26日星期六','15:00',183 ,'伯恩茅斯',0,162,'水晶宮',0,'vs',, 0,1 ,,' - 1',0,1,10,0] ,[959635,4,'2015年12月26日星期六','15:00',15,'Chelsea',0,27,'沃特福德',0,'vs',, 0,1 ,,' - 1 ',0,1,15,0] ,[959645,4,'2015年12月26日星期六','15:00',26,'利物浦',0,14,'萊斯特',0,'vs' ,0,1 ,,' - 1',0,1,15,0] ,[959655,4,'2015年12月26日星期六','15:00',167'曼城',0, 16,'桑德蘭',0,'vs',, 0,1 ,,' - 1',0,1,4,0] ,[959691,4,'2015年12月26日星期六','15:00 ',259,'Swansea',0,175,'West Bromwich Albion',0,'vs',, 0,1 ,,' - 1',0,1,5,0] ,[959698,4',Saturday ,'2015年12月26日','15:00',30'托特納姆',0,168'諾維奇',0,'vs',, 0,1 ,,' - 1',0,1,8,0] ,[959665,4,'2015年12月26日星期六','17:30',23,'紐卡斯爾聯',0,31,'埃弗頓',0,'vs',, 0,1 ,,' - 1 ',0,1,7,0] ,[959674,4,'2015年12月26日星期六','19:45',18,'南安普敦',0,13,'阿森納',0,'vs' ,0,1 ,,' - 1',0,1,11,0] ]);
這段代碼應該從表格格式中抓取數據,但在這種情況下我不怎麼做。
Option Explicit
Sub WeeklyFixtures()
Dim IE As Object, obj As Object
Dim r As Integer, c As Integer, t As Integer
Dim elemCollection As Object
Set IE = CreateObject("InternetExplorer.Application")
With IE
.Visible = True
.navigate ("http://www.whoscored.com/regions/252/tournaments/2/england-premier-league")
While IE.ReadyState <> 4
DoEvents
Wend
Do While IE.busy: DoEvents: Loop
ThisWorkbook.Sheet1.Clear
Set elemCollection = IE.Document.getElementsByTagName("TABLE")
For t = 0 To (elemCollection.Length - 1)
For r = 0 To (elemCollection(t).Rows.Length - 1)
For c = 0 To (elemCollection(t).Rows(r).Cells.Length - 1)
ThisWorkbook.Worksheets(1).Cells(r + 1, c + 1) = elemCollection(t).Rows(r).Cells(c).innerText
Next c
Next r
Next t
End With
Set IE = Nothing
End Sub
你想使用VBA來檢索數據,爲什麼呢?一個簡單的'網絡查詢'工作在我的電腦上就好了。只需點擊「數據」菜單上的「獲取外部數據」並選擇「從網站」。在那裏你可以輸入你給我們的URL並選擇你想要檢索的表格。你甚至可以設置查詢來刷新每個'xx'秒。 – Ralph
@Ralph我在表格 – Anuj
附近找不到'next - >'符號當我嘗試在IE 11中打開網站時,它並未完成加載,表格爲空。在Firefox中,它工作正常。該網站在IE中適合你嗎?在使用Firefox的屏幕截圖中,您是否嘗試手動打開IE中的頁面? – dee