gpt4 book ai didi

javascript - 无法使用 Express 应用程序中的 xmlreader 解析 Parse Cloud 中 xml 文件中的数据

转载 作者:行者123 更新时间:2023-12-03 12:10:12 25 4
gpt4 key购买 nike

我的目标是获取我已经为我的 Express 应用程序保存在 Parse Cloud 上的 xml 文件的元素。我在引用this后开始编码用于 xmlreader以及 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);
});
});
});
});
});

注意:日志 main.js 21:11 中显示的错误指向“xmlreader.read”。显然,从云端检索的 xml 文件无法被 xmlreader 浏览。

我的 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。请帮忙!

最佳答案

已解决。首先,XMl 文件中有一个拼写错误。将“PID”替换为“ParentId”。但与问题相关的错误是......就像@timothy建议的那样,httpRequest方法的结果位于“thefile”中,文件位于“thefile.buffer”中。对于 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

以后我一定会处理错别字的。

关于javascript - 无法使用 Express 应用程序中的 xmlreader 解析 Parse Cloud 中 xml 文件中的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25000277/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com