我从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标签等。
怎么了?