我正在创建一个新的 productfeed 并且需要以下字段:<diff>
.
如果 price 和 old_price 之间的差异大于 1:字段中的 y(来自 Yes):<diff>
如果 price 和 old_price 之间的差异为 1 或小于 1:字段中的 n(来自 No):<diff>
文件:Data.xml
<?xml version="1.0"?>
<products>
<product id="0001">
<price>120.00</price>
<old_price>125.00</old_price>
</product>
<product id="0002">
<price>5.00</price>
<old_price>5.50</old_price>
</product>
</products>
期望输出:
<?xml version="1.0"?>
<products>
<product id="0001">
<diff>y</diff>
</product>
<product id="0002">
<diff>n</diff>
</product>
</products>