繁体   English   中英

快速响应未在锚标记 href 中添加 html 属性值

[英]Express response not adding html attribute value in anchor tag href

我正在使用 Nodejs 脚本发送快速响应。 在此,我发送 HTML 文本作为响应,并设置锚标记的href值,但我无法在客户端看到它。 而我可以在标签的innerHTML上看到它。

正如您在下面的代码行中看到的那样,我专注于这个问题。 (以下是我的代码中的两行,其中我面临添加/附加 href 值的问题。)

res.write("<p>("+(counter+1)+") "+"<a href='https://patents.google.com/patent/'"+toString(patent_number)+" target='_blank' > "+patent_number+"</a>"+", score: "+patent_A[i]['score']+"</p>")
res.write("<p>click <a href='"+"data:text/csv;charset=utf-8,'"+encodeURI(csv)+"' target='_blank' download='output.csv' >here</a> to download csv file</p>")

另外,我尝试通过发送下载按钮的脚本来添加事件侦听器,它也不起作用。

res.write("<script> document.getElementById('link').innerHTML = 'Hello World' document.body.onload = function(){  function download_csv() { var hiddenElement = document.createElement('a') ")
res.write("  hiddenElement.href = 'data:text/csv;charset=utf-8,' "+ encodeURI(csv))
res.write("  hiddenElement.target = '_blank' ")
res.write("  hiddenElement.download = 'output.csv' } }")
res.write(" </script>")

请参阅下面的代码完整的 Nodejs 代码和屏幕截图。

res.writeHead(200, {'Content-Type': 'text/html'});
res.write("<body>")

res.write("<center><div style='border-style: solid;width: 600px;margin-top: 10%;text-align: left; padding:10px;'>")

// <p>Following patents constitute the top 20% of the portfolio</p>
if(patent_A.length != 0){
    res.write("<p><b>Following patents constitute the top 20% of the portfolio</b></p>") 
    for(var i=0; i<patent_A.length;i++){
        counter = i
        patent_number = patent_A[i]['patentNumber']
        res.write("<p>("+(counter+1)+") "+"<a href='https://patents.google.com/patent/'"+toString(patent_number)+" target='_blank' > "+patent_number+"</a>"+", score: "+patent_A[i]['score']+"</p>")
    }
}

// <p>Following patents constitute the top 21-50% of the portfolio</p>
if(patent_B.length != 0){
    res.write("<p><b>Following patents constitute the top 21-50% of the portfolio</b></p>") 
    for(var i=0; i<patent_B.length;i++){
        counter = i
        patent_number = patent_B[i]['patentNumber']
        res.write("<p>("+(counter+1)+") "+"<a href='https://patents.google.com/patent/'"+toString(patent_number)+" target='_blank' > "+patent_number+"</a>"+", score: "+patent_B[i]['score']+"</p>")
    }
}

// Following patents constitute the remaining 51-100% of the portfolio
if(patent_C.length != 0){
    res.write("<p><b>Following patents constitute the top 21-50% of the portfolio</b></p>") 
    for(var i=0; i<patent_C.length;i++){
        counter = i
        patent_number = patent_C[i]['patentNumber']
        res.write("<p>("+(counter+1)+") "+"<a href='https://patents.google.com/patent/'"+toString(patent_number)+" target='_blank' > "+patent_number+"</a>"+", score: "+patent_C[i]['score']+"</p>")
    }
}   

res.write("<p>click <a href='"+"data:text/csv;charset=utf-8,'"+encodeURI(csv)+"' target='_blank' download='output.csv' >here</a> to download csv file</p>")

res.write("<button onclick=download_csv()>Download CSV</button>")

res.write("</div></center>")
res.write("<script> document.getElementById('link').innerHTML = 'Hello World' document.body.onload = function(){  function download_csv() { var hiddenElement = document.createElement('a') ")
res.write("  hiddenElement.href = 'data:text/csv;charset=utf-8,' "+ encodeURI(csv))
res.write("  hiddenElement.target = '_blank' ")
res.write("  hiddenElement.download = 'output.csv' } }")
res.write(" </script>")
res.end()

在你写的两个陈述中,你都放错了小引号。

试试下面:

res.write("<p>("+(counter+1)+") "+"<a href='https://patents.google.com/patent/"+toString(patent_number)+"' target='_blank' > "+patent_number+"</a>"+", score: "+patent_A[i]['score']+"</p>")
res.write("<p>click <a href='"+"data:text/csv;charset=utf-8,"+encodeURI(csv)+"' target='_blank' download='output.csv' >here</a> to download csv file</p>")

此外,为了摆脱处理带有值的完整字符串文字的困难,我建议使用字符串插值

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM