您好我要从url
创建dataimport我有网址http://domain.loc/path 在这个网址下我动态生成了xml
现在我有像这样的数据导入
<dataConfig>
<dataSource type="HttpDataSource" />
<document>
<entity name="pages"
pk="uid"
url="http://domain.loc/?no_cache=1&type=9999"
processor="XPathEntityProcessor"
forEach="/items"
transformer="DateFormatTransformer">
<field column="uid" xpath="/items/item/uid" indexed="true" stored="true" />
<field column="name" xpath="/items/item/title" indexed="true" stored="true" />
</entity>
</document>
此网址下的xml看起来像这样
<?xml version="1.0" encoding="UTF-8"?>
<items>
<item>
<uid>1</uid>
<title>page 1</title>
</item>
<item>
<uid>2</uid>
<title>page 2.</title>
</item>
</items>
Dataimport有效,但它正在索引0个文档,我不知道为什么