gpt4 book ai didi

php - 相当于Node.js中PHP的simplexml_load_string

转载 作者:太空宇宙 更新时间:2023-11-03 22:12:57 25 4
gpt4 key购买 nike

在 PHP 中我有

$this->response->body = simplexml_load_string($this->response->body);

如何在 Node.js 项目中执行相同的操作?

最佳答案

是的,您可以使用jsdom正如 @florian-margaine 所示 PHP's SimpleXMLElement analog for Node.js .

// Run some jQuery on a html fragment
var jsdom = require('jsdom');

jsdom.env('<p><a class="the-link" href="https://github.com/tmpvar/jsdom">jsdom\'s Homepage</a></p>', [
'http://code.jquery.com/jquery-1.5.min.js'
],
function(errors, window) {
console.log("contents of a.the-link:", window.$("a.the-link").text());
});

编辑:

因此,稍微研究一下,您就可以使用:dojotoolkit.org/reference-guide/1.10/dojox/xml.html,我发现它更易于使用。

这里是一个例子:jsfiddle.net/arthurvasconcelos/gwpqyf06/

关于php - 相当于Node.js中PHP的simplexml_load_string,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36872143/

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