У меня проблема с senchatouch, и мне нужно декодировать этот XML.Я не могу найти решение, чтобы получить атрибут Product-id, URL-адреса ProductMime и другие коллекции.
<ProductCollection>
<Product id="5">
<vendorProductId>123</vendorProductId>
<ean>0</ean>
<stock>no</stock>
<name>test</name><nameShort>
</nameShort>
<description>description</description>
<descriptionShort>descriptionShort</descriptionShort>
<deliveryScope></deliveryScope>
<price>89</price>
<priceTax>0</priceTax>
<priceGross>89</priceGross>
<productCurrency>0</productCurrency>
<ProductMimeCollection>
<ProductMime url="1.JPG" mimeType=""/>
<ProductMime url="1.JPG" mimeType=""/>
<ProductMime url="1.JPG" mimeType=""/>
<ProductMime url="1.JPG" mimeType=""/>
<ProductMime url="1" mimeType=""/>
</ProductMimeCollection>
<ProductReviewCollection rating="5" reviews="1">
<ProductReview id="1">
<active>1</active>
<customerId>2</customerId>
<dateCreated/>
<productId>5</productId>
<review>Reviewtext</review>
<shopId/>
<userEmail></userEmail>
<userName></userName>
<userRating>5</userRating>
</ProductReview>
</ProductReviewCollection>
<CrossSellingCollection>
<Product id="13"></Product>
</CrossSellingCollection>
</Product>
</ProductCollection>
Можете ли вы показать мне, как получить атрибуты и элементы, ... это был мой путькоторый не работал:
Ext.regModel('Products', {
fields: ['vendorProductId', 'ean', 'stock', {name: 'ProductMime', convert: (function(){
var reader2 = new Ext.data.XmlReader({
record: '> url',
fields: [
{name: 'url', mapping: '@url'}
]
});
return function(v, n) {
return reader2.readRecords(n).records;
};
});}
]
});
var store = new Ext.data.Store({
model: 'Products',
autoLoad:true,
proxy: {
type: 'ajax',
url : 'ajax/topten.xml',
reader: {
type : 'xml',
root : 'ProductCollection',
record: 'Product'
}
}
Пожалуйста, помогите мне
Спасибо за вашу помощь !!