谢谢大神的解答,想问下对于这种网址,
1.是不是一般都是去掉&js=这后面的
然后后面的参数是不是一般网址都通用的,有点不是特别明白意思,比如token,type.rt.
2.网址中有时间参数,
怎样把时间设置成变量,我自己尝试了下
let
url = "http://dcfm.eastmoney.com/em_mutisvcexpandinterface/api/js/get?
type=RZRQ_DETAIL_NJ&token=70f12f2f4f091e459a279469fe49eca5&st=rzjmre&sr=-1",
date=List.Dates(#date(2018, 06, 25), 5, #duration(1, 0, 0, 0)),
web=List.Transform(date,(x)=> url&"&"&Text.From(x)),
data = List.Transform(web,each Json.Document(Text.FromBinary(Web.Contents(_)) )),
combine = List.Combine(data),
result = Table.FromRecords(combine)
in
result
然后有两个问题,a.与设置的date 日期时间不符,如何导出我需要的date 日期数据。b.我是根据提示加的 Text.FromBinary 然后出的数据,是否这里有问题,如果没问题,上面单独只有一个网址时为何没有Text.FromBinary
问题较多,还望大神费心,相信初学者应该都有这样的疑问。