DomXPath->查询不会获取HTML标记

时间:2016-06-03 10:40:06

标签: php domdocument domxpath

我从DOMDocument获取内容并使用查询获取DOM的某个部分。

我得到的内容完美但不是HTML标签,只有纯文本。

以下是我使用的代码:

client.Map<Person>(m => m
    .AutoMap()
    .Properties(p => p
        .Object<Person>(o => o
            .Name(n => n.child)
            .Properties(pp => pp
                .Number(n => n
                    .Name(nn => nn.Id)
                    .Type(NumberType.Integer)
                )
                .String(s => s
                    .Name(n => n.Code)
                    .NotAnalyzed()
                )
            )
        )
    )
);

一旦我回复$ description,就不会包含{ "properties": { "id": { "type": "integer" }, "code": { "type": "string", "index": "not_analyzed" }, "child": { "type": "object", "properties": { "id": { "type": "integer" }, "code": { "type": "string", "index": "not_analyzed" } } } } } 之类的html标签等。

怎么了?

0 个答案:

没有答案