- 论坛徽章:
- 0
|
本帖最后由 qinggeng 于 2012-12-04 12:38 编辑
asdmonster 发表于 2012-12-04 11:49 ![]()
至少它自己提供的xpath部分好像没有相关的方法,唯一的一个xpatheval什么的方法,必须以doc为上下文.(至少 ...
你确定?
函数原型:- xmlXPathObjectPtr xmlXPathEval (const xmlChar * str,
- xmlXPathContextPtr ctx)
复制代码 结构体:- Structure xmlXPathContext
- struct _xmlXPathContext {
- xmlDocPtr doc // The current document
- xmlNodePtr node // The current node
- int nb_variables_unused // unused (hash table)
- int max_variables_unused // unused (hash table)
- xmlHashTablePtr varHash // Hash table of defined variables
- int nb_types // number of defined types
- int max_types // max number of types
- xmlXPathTypePtr types// Array of defined types
- int nb_funcs_unused // unused (hash table)
- int max_funcs_unused // unused (hash table)
- xmlHashTablePtr funcHash // Hash table of defined funcs
- int nb_axis // number of defined axis
- int max_axis // max number of axis
- xmlXPathAxisPtr axis // Array of defined axis the namespace nod
- xmlNsPtr * namespaces // Array of namespaces
- int nsNr // number of namespace in scope
- void * user // function to free extra variables
- int contextSize // the context size
- int proximityPosition // the proximity position extra stuff for
- int xptr // is this an XPointer context?
- xmlNodePtr here // for here()
- xmlNodePtr origin // for origin() the set of namespace decla
- xmlHashTablePtr nsHash // The namespaces hash table
- xmlXPathVariableLookupFunc varLookupFunc // variable lookup func
- void * varLookupData // variable lookup data Possibility to lin
- void * extra // needed for XSLT The function name and U
- const xmlChar * function
- const xmlChar * functionURI // function lookup function and data
- xmlXPathFuncLookupFunc funcLookupFunc // function lookup func
- void * funcLookupData // function lookup data temporary namespac
- xmlNsPtr * tmpNsList // Array of namespaces
- int tmpNsNr // number of namespaces in scope error rep
- void * userData // user specific data block
- xmlStructuredErrorFunc error // the callback in case of errors
- xmlError lastError // the last error
- xmlNodePtr debugNode // the source node XSLT dictionary
- xmlDictPtr dict // dictionary if any
- int flags : flags to control compilation Cache for
- void * cache
- }
复制代码 创建结构体的函数:- xmlXPathContextPtr xmlXPathNewContext (xmlDocPtr doc)
复制代码 有了这几样东西还不知道怎么使用xpath,我建议你重新阅读一下w3c上面的xpath标准。
看样子你不怎么熟悉xpath,顶楼的xpath是错的。 |
|