Documentation ¶
Overview ¶
Package xmlquery provides extract data from XML documents using XPath expression.
Index ¶
- Variables
- func FindEach(top *Node, expr string, cb func(int, *Node))
- func FindEachWithBreak(top *Node, expr string, cb func(int, *Node) bool)
- type Node
- func Find(top *Node, expr string) []*Node
- func FindOne(top *Node, expr string) *Node
- func LoadURL(url string) (*Node, error)
- func Parse(r io.Reader) (*Node, error)
- func Query(top *Node, expr string) (*Node, error)
- func QueryAll(top *Node, expr string) ([]*Node, error)
- func QuerySelector(top *Node, selector *xpath.Expr) *Node
- func QuerySelectorAll(top *Node, selector *xpath.Expr) []*Node
- type NodeNavigator
- func (x *NodeNavigator) Copy() xpath.NodeNavigator
- func (x *NodeNavigator) Current() *Node
- func (x *NodeNavigator) LocalName() string
- func (x *NodeNavigator) MoveTo(other xpath.NodeNavigator) bool
- func (x *NodeNavigator) MoveToChild() bool
- func (x *NodeNavigator) MoveToFirst() bool
- func (x *NodeNavigator) MoveToNext() bool
- func (x *NodeNavigator) MoveToNextAttribute() bool
- func (x *NodeNavigator) MoveToParent() bool
- func (x *NodeNavigator) MoveToPrevious() bool
- func (x *NodeNavigator) MoveToRoot()
- func (x *NodeNavigator) NamespaceURL() string
- func (x *NodeNavigator) NodeType() xpath.NodeType
- func (x *NodeNavigator) Prefix() string
- func (x *NodeNavigator) String() string
- func (x *NodeNavigator) Value() string
- type NodeType
Constants ¶
This section is empty.
Variables ¶
var DisableSelectorCache = false
DisableSelectorCache will disable caching for the query selector if value is true.
var SelectorCacheMaxEntries = 50
SelectorCacheMaxEntries allows how many selector object can be caching. Default is 50. Will disable caching if SelectorCacheMaxEntries <= 0.
Functions ¶
func FindEach ¶
FindEach searches the html.Node and calls functions cb. Important: this method has deprecated, recommend use for .. = range Find(){}.
func FindEachWithBreak ¶
FindEachWithBreak functions the same as FindEach but allows you to break the loop by returning false from your callback function, cb. Important: this method has deprecated, recommend use for .. = range Find(){}.
Types ¶
type Node ¶
type Node struct {
Parent, FirstChild, LastChild, PrevSibling, NextSibling *Node
Type NodeType
Data string
Prefix string
NamespaceURI string
Attr []xml.Attr
// contains filtered or unexported fields
}
A Node consists of a NodeType and some Data (tag name for element nodes, content for text) and are part of a tree of Nodes.
func Find ¶
Find is like QueryAll but it will panics if the `expr` is not a valid XPath expression. See `QueryAll()` function.
func FindOne ¶
FindOne is like Query but it will panics if the `expr` is not a valid XPath expression. See `Query()` function.
func Query ¶ added in v1.1.0
Query searches the XML Node that matches by the specified XPath expr, and returns first element of matched.
func QueryAll ¶ added in v1.1.0
QueryAll searches the XML Node that matches by the specified XPath expr. Return an error if the expression `expr` cannot be parsed.
func QuerySelector ¶ added in v1.1.0
QuerySelector returns the first matched XML Node by the specified XPath selector.
func QuerySelectorAll ¶ added in v1.1.0
QuerySelectorAll searches all of the XML Node that matches the specified XPath selectors.
func (*Node) SelectAttr ¶
SelectAttr returns the attribute value with the specified name.
func (*Node) SelectElement ¶
SelectElement finds child elements with the specified name.
func (*Node) SelectElements ¶
SelectElements finds child elements with the specified name.
type NodeNavigator ¶
type NodeNavigator struct {
// contains filtered or unexported fields
}
func CreateXPathNavigator ¶
func CreateXPathNavigator(top *Node) *NodeNavigator
CreateXPathNavigator creates a new xpath.NodeNavigator for the specified html.Node.
func (*NodeNavigator) Copy ¶
func (x *NodeNavigator) Copy() xpath.NodeNavigator
func (*NodeNavigator) Current ¶
func (x *NodeNavigator) Current() *Node
func (*NodeNavigator) LocalName ¶
func (x *NodeNavigator) LocalName() string
func (*NodeNavigator) MoveTo ¶
func (x *NodeNavigator) MoveTo(other xpath.NodeNavigator) bool
func (*NodeNavigator) MoveToChild ¶
func (x *NodeNavigator) MoveToChild() bool
func (*NodeNavigator) MoveToFirst ¶
func (x *NodeNavigator) MoveToFirst() bool
func (*NodeNavigator) MoveToNext ¶
func (x *NodeNavigator) MoveToNext() bool
func (*NodeNavigator) MoveToNextAttribute ¶
func (x *NodeNavigator) MoveToNextAttribute() bool
func (*NodeNavigator) MoveToParent ¶
func (x *NodeNavigator) MoveToParent() bool
func (*NodeNavigator) MoveToPrevious ¶
func (x *NodeNavigator) MoveToPrevious() bool
func (*NodeNavigator) MoveToRoot ¶
func (x *NodeNavigator) MoveToRoot()
func (*NodeNavigator) NamespaceURL ¶ added in v1.2.1
func (x *NodeNavigator) NamespaceURL() string
func (*NodeNavigator) NodeType ¶
func (x *NodeNavigator) NodeType() xpath.NodeType
func (*NodeNavigator) Prefix ¶
func (x *NodeNavigator) Prefix() string
func (*NodeNavigator) String ¶
func (x *NodeNavigator) String() string
func (*NodeNavigator) Value ¶
func (x *NodeNavigator) Value() string
type NodeType ¶
type NodeType uint
A NodeType is the type of a Node.
const ( // DocumentNode is a document object that, as the root of the document tree, // provides access to the entire XML document. DocumentNode NodeType = iota // DeclarationNode is the document type declaration, indicated by the following // tag (for example, <!DOCTYPE...> ). DeclarationNode // ElementNode is an element (for example, <item> ). ElementNode // TextNode is the text content of a node. TextNode // CommentNode a comment (for example, <!-- my comment --> ). CommentNode // AttributeNode is an attribute of element. AttributeNode )