淘宝没返回数据,GET错误了,求帮忙
$oHTTP = ObjCreate("microsoft.xmlhttp")$oHTTP.open("get", "http://detail.tmall.com/item.htm?id=13620534478", False)
$oHTTP.send()
$source1 = $oHTTP.responsetext
MsgBox(0,0,$source1) 这样就可以了。
$oHTTP = ObjCreate("winhttp.winhttprequest.5.1")
$oHTTP.open("POST", "http://detail.tmall.com/item.htm?id=13620534478", False)
$oHTTP.send("")
$source1 = $oHTTP.responsetext
MsgBox(0,0,$source1) 这样也行
$oHTTP = ObjCreate("winhttp.winhttprequest.5.1")
$oHTTP.open("GET", "http://detail.tmall.com/item.htm?id=13620534478", False)
$oHTTP.send()
$source1 = $oHTTP.responsetext
MsgBox(0,0,$source1) 回复 3# ebhb
我想得到 这个商品的,价格,名字。销量
页:
[1]