ReferenceError:全局未在xml2js中定义
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ReferenceError:全局未在xml2js中定义相关的知识,希望对你有一定的参考价值。
我想将XML字符串转换为JSON,以便获取一些用户详细信息。我正在使用xml2js库。以下是我的打字稿代码:
typescript.ts
sendXML(){
console.log("Inside sendXML method")
console.log(this.XMLAsString)
this.parseXML(this.XMLAsString);
}
parseXML(XMLAsString){
var result;
var parser=require('xml2js');
parser.Parser().parseString(XMLAsString, (err, r)=>{result=r});
console.log(result);
}
ItrAgainstOrderFilTypeComponent.html
<button class="largeButton primaryButton" [disabled]="proceedToVerification" (click)="sendXML()">Proceed to Submit</button>
sendXML()
调用parseXML()
函数,该函数解析提供的字符串XMLAsString
。parseXML()
将String作为参数,并应打印等效的JSON。
但是当我尝试运行此代码时,出现以下错误:ItrAgainstOrderFilTypeComponent.html:112 ERROR ReferenceError: global is not defined
这是我第一次使用xml2js
lib。如何解决此问题?另外,为什么它在html文件中显示错误(错误在上面提供的html中)?
[似乎您正在尝试在浏览器中require
一个软件包,这通常是在Node.js脚本中导入软件包的方法。
您可能需要找到其他库或使用Browserify。
以上是关于ReferenceError:全局未在xml2js中定义的主要内容,如果未能解决你的问题,请参考以下文章
未捕获的 ReferenceError:全局未在 Object../node_modules/fbjs/lib/setImmediate.js 中定义
ReferenceError:localStorage 未在 Object 中定义
ReferenceError 'model' 未在 mongoose 中定义
ReferenceError: primordials 未在 node.js 中定义