无法使用快速应用程序中的xmlreader解析Parse Cloud中的xml文件中的数据

时间:2014-07-28 16:55:21

标签: javascript express xml-parsing parse-platform

我的目标是获取一个xml文件的元素,我已经在Parse Cloud上保存了我的快递应用程序。我在为{xmlreader'引用this之后开始编码 和Parse httpRequest指南检索解析文件。我使用xmlreader测试了读取xml元素,如下所示:

exports.xmlmodule = function(req, res) {
if (Parse.User.current()){
Parse.User.current().fetch().then(function(user){
var xmlreader = require('cloud/xmlreader');

var someXml =     '<dataset>'
        +         '<brands>'
        +            '<TheId>1</TheId>'
        +            '<ParentId></ParentId>'
        +            '<CategoryorProductName>Casuals</CategoryorProductName>'
        +         '</brands>'
        +         '<brands>'
        +            '<TheId>34</TheId>'
        +            '<ParentId>1</ParentId>'
        +            '<CategoryorProductName>Jeans</CategoryorProductName>'
        +         '</brands>'
        +    '</dataset>'


xmlreader.read(someXml, function (err, res){
if(err) return console.log(err);

// using the .count() and the .at() function, you can loop through nodes with the same         name:
for(var i = 0; i < res.dataset.brands.count(); i++){
    console.log( res.dataset.brands.TheId.at(i).text() );
    console.log( res.dataset.brands.ParentId.at(i).text() );
    console.log( res.dataset.brands.CategoryorProductName.at(i).text() );
}

console.log("");


});


});}
else{ res.render('login',{welcome: 'Please login to continue'});}
 };

它有效。 (请忽略此处不相关的'用户'提取。)

然后我尝试使用httprequest从解析云中获取xml文件,它也有效。

现在,当我将这两者结合起来达到我的目标时,我得到一个错误:

Failed with: TypeError: Object [object Object] has no method 'charAt'
at Object.write (sax.js:918:31)
at Object.exports.read (xmlreader.js:157:12)
at main.js:21:11
at e (Parse.js:2:5101)
at Parse.js:2:4651
at Array.forEach (native)
at Object.x.each.x.forEach [as _arrayEach] (Parse.js:1:665)
at c.extend.resolve (Parse.js:2:4602)
at Object.<anonymous> (<anonymous>:573:17)

我使用了云功能,这是我的main.js

require ('cloud/app.js');
var xmlreader = require('cloud/xmlreader');
Parse.initialize("xxxxx", "xxxxx");

Parse.Cloud.define('myxmlfunction',function(req,res){
Parse.User.current().fetch().then(function(user){
var theid= user.get('StoreId');
var Stores= Parse.Object.extend('Stores');
var query= new Parse.Query(Stores);
query.equalTo('objectId', theid);
query.first().then(function(results){
var xmlfile= results.get('xmlfile');
Parse.Cloud.httpRequest({
url: xmlfile.url()
}).then(function(thefile){

var file = new Parse.File('thexml.xml', {
 base64: thefile.buffer.toString("base64")
});

xmlreader.read(file, function (err, res){
if(err) return console.log(err);

// using the .count() and the .at() function, you can loop through nodes with the same name:
 for(var i = 0; i < res.myrecord.brands.count(); i++){
     console.log( res.myrecord.brands.TheId.at(i).text() );
      console.log( res.myrecord.brands.ParentId.at(i).text() );
     console.log( res.myrecord.brands.CategoryorProductName.at(i).text() );
 }

 console.log("");

 });

 file.save().then(function() {
 res.success();
 }, function(error) {
 res.error(error);
 });
  });
  });
  });
  });

注意:log main.js 21:11中显示的错误指向“xmlreader.read”。很明显,xmlreader无法浏览从云中检索到的xml文件。

我的xml文件:

 <?xml version="1.0" encoding="UTF-8"?>
 <myrecord>
    <brands>
       <TheId>a</TheId>
       <PId > g</PId>          
       <CategoryNameorProductName >Martin</CategoryNameorProductName>
    </brands>
    <brands>
       <TheId>b</TheId>
       <PId > c</PId>           
       <CategoryNameorProductName >Levis</CategoryNameorProductName>
    </brands> 
</myrecord>

注意错误'charAt'。 我在一个月前开始编码,今天中午看了w3 xml tuts。请帮忙!

2 个答案:

答案 0 :(得分:1)

解决。首先,XMl文件中存在拼写错误。替换&#34; PId&#34;使用&#34; ParentId&#34;。但是与问题相关的错误是......就像@timothy建议的那样,httpRequest方法的结果在于文件&#39;并且文件在&#39; thefile.buffer&#39;中。对于xmlreader输入,请使用:thefile.buffer.toString()。 main.js中的循环函数也有错误,因为我放错了.at()。我将最终代码附加到从Parse Cloud检索xml文件并使用xmlreader获取其节点元素

require ('cloud/app.js');
var xmlreader = require('cloud/xmlreader');
Parse.initialize("xxxx", "xxxx");

Parse.Cloud.define('myxmlfunction',function(req,res){
Parse.User.current().fetch().then(function(user){
var theid= user.get('StoreId');
var Stores= Parse.Object.extend('Stores');
var query= new Parse.Query(Stores);
query.equalTo('objectId', theid);
query.first().then(function(results){
var xmlfile= results.get('xmlfile');
Parse.Cloud.httpRequest({
url: xmlfile.url()
}).then(function(thefile){

xmlreader.read(thefile.buffer.toString(), function (err, res){
if(err) return console.log(err);

// using the .count() and the .at() function, you can loop through nodes with the same name:
 for(var i = 0; i < res.myrecord.brands.count(); i++){
    console.log( res.myrecord.brands.at(i).TheId.text() );
    console.log( res.myrecord.brands.at(i).ParentId.text() );
    console.log( res.myrecord.brands.at(i).CategoryNameorProductName.text() );
}

console.log("");

});


}).then(function() {
res.success();
}, function(error) {
res.error(error);
 });
});
});
});

和xml文件是

<?xml version="1.0" encoding="UTF-8"?>
<myrecord>
    <brands>
       <TheId>a</TheId>
       <ParentId > g</ParentId>          
       <CategoryNameorProductName >Martin</CategoryNameorProductName>
    </brands>
    <brands>
       <TheId>b</TheId>
       <ParentId > c</ParentId>           
       <CategoryNameorProductName >Levis</CategoryNameorProductName>
    </brands> 
</myrecord>

日志结果:

Input: {}
Result: undefined
I2014-07-29T05:56:42.879Z] Levis
I2014-07-29T05:56:42.880Z]  c
I2014-07-29T05:56:42.881Z] a
I2014-07-29T05:56:42.881Z] b
I2014-07-29T05:56:42.881Z] Martin
I2014-07-29T05:56:42.884Z] 
I2014-07-29T05:56:42.885Z]  g

我将来肯定会处理错别字。

答案 1 :(得分:0)

您正在将Parse.File实例(file)提供给XmlReader,而不是它想要的实际字符串。

您的thefile变量中包含实际文件,因此请改用它。

Parse.File类适用于您希望将文件保存到云中并在类中存储指向它的指针。