我正在尝试使用getElementByTagName
从XML文件中提取的数据,它返回HTML Collection Object
但我需要这些数据来发送REST请求,所以我需要获取HTML Collection对象转换成字符串。怎么办呢?
以下是更多信息:
com_zimbra_om.prototype._responseHandler=
function(response){
try{
sid = response.xml.getElementsByTagName("session_id");
this.login_user();
}catch(e){
this._showErrorMsg(e);
}
使用此功能我试图从REST响应中获取session_id
。这里sid
(全局变量)是HTML集合对象。现在,当我尝试在下一个函数中使用它时:
com_zimbra_om.prototype.login_user = function(){
var url = selected_server + 'services/UserService/loginUser?SID=' +
sid + '&username='+
selected_username +
'&userpass=' +
selected_password;
var request_url = ZmZimletBase.PROXY + AjxStringUtil.urlComponentEncode(url);
所以我在这里使用sid
作为字符串。
那么我应该如何将HTML Collection Object转换为string?
由于
答案 0 :(得分:9)
有了这些信息,我只能使用
var objectHTMLCollection = document.getElementsByTagName("div"),
string = [].map.call( objectHTMLCollection, function(node){
return node.textContent || node.innerText || "";
}).join("");