org.spiderflow.io.SpiderResponse
element
返回值类型:Element
- 将对象转为Element
${resp.element()}
xpath
参数名 | 描述 | 可否为空 |
---|---|---|
xpath | xpath表达式 | 否 |
返回值类型:Element/String
- 根据xpath获取内容或Element对象
${resp.xpath('//a/@href')}
xpaths
参数名 | 描述 | 可否为空 |
---|---|---|
xpath | xpath表达式 | 否 |
返回值类型:List<Element/String>
- 根据xpath获取内容或Element对象
${resp.xpaths('//a/@href')}
regx
参数名 | 描述 | 可否为空 |
---|---|---|
pattern | 正则表达式 | 否 |
返回值类型:String
- 根据正则表达式提取字符串
${resp.regx('<title>(.*?)</title>')}
regxs
参数名 | 描述 | 可否为空 |
---|---|---|
pattern | 正则表达式 | 否 |
返回值类型:List<String>
- 根据正则表达式提取字符串
${resp.regx('<h2>(.*?)</h2>')}
selector
参数名 | 描述 | 可否为空 |
---|---|---|
cssQuery | css选择器 | 否 |
返回值类型:Element
- 根据css选择器查找dom
${resp.selector('div a.selected')}
selectors
参数名 | 描述 | 可否为空 |
---|---|---|
cssQuery | css选择器 | 否 |
返回值类型:List<Element>
- 根据css选择器查找dom
${resp.selectors('div a.selected')}
jsonpath
参数名 | 描述 | 可否为空 |
---|---|---|
path | jsonpath | 否 |
返回值类型:Object
- 根据JSONPath提取数据
${resp.jsonpath('$.code')}
当前内容版权归 spider-flow 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 spider-flow .