您好我正在尝试从 url 创建数据导入
我在这个 url 下有 url 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>
这个url下的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 个文档,我不知道为什么