release notes
parent
c1471718df
commit
0f0f1a9bcd
|
@ -8,8 +8,16 @@ Request priority support (using `PriorityScheduler`).
|
||||||
|
|
||||||
Complete some I18n work (comments and documents).
|
Complete some I18n work (comments and documents).
|
||||||
|
|
||||||
|
More convenient extractor API:
|
||||||
|
|
||||||
|
* Add attribute name select for CSSSelector.
|
||||||
|
* Group of regex selector can be specified.
|
||||||
|
* Add OrSelector.
|
||||||
|
* Add Selectors, import static Selectors.* for fluent API such as:
|
||||||
|
|
||||||
|
or(regex("<title>(.*)</title>"), xpath("//title"), $("title")).select(s);
|
||||||
|
* Add JsonPathSelector for Json parse.
|
||||||
|
|
||||||
*2012-8-9* `version:0.2.0`
|
*2012-8-9* `version:0.2.0`
|
||||||
|
|
||||||
此次更新的主题是"方便"(之前的主题是"灵活")。
|
此次更新的主题是"方便"(之前的主题是"灵活")。
|
||||||
|
|
|
@ -2,6 +2,7 @@ package us.codecraft.webmagic.selector;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Object contains regex results.<br>
|
* Object contains regex results.<br>
|
||||||
|
* For multi group result extension.<br>
|
||||||
*
|
*
|
||||||
* @author code4crafter@gmail.com <br>
|
* @author code4crafter@gmail.com <br>
|
||||||
* @since 0.1.0
|
* @since 0.1.0
|
||||||
|
|
Loading…
Reference in New Issue