如何将动态 html 安全地嵌入到动态 javascript 文件中,这样就不会破坏 javascript

发布于 2024-09-30 08:52:01 字数 418 浏览 7 评论 0原文

我需要动态构建一个 javascript 文件并在其中嵌入一些 html,以便在运行时,javascript 能够将 html 添加到 DOM。

我有一个 javascript.js,可以使用 wicket 进行插值。它包含:

var html = "${somehtml}"

document.write(html);

目前,如果我将 ${somehtml} 替换为包含单引号的 html,显然会破坏 html。

我尝试使用 URLEncoder.encode() 和 javascript unescape() 但这破坏了 javascript。

我想知道是否可以对 Base64 进行编码/解码?或者还有其他解决方案吗?

I need to build a javascript file on the fly and embed some html inside it, so that when run, the javascript will be able to add the html to the DOM.

I hava a javascript.js that I can interpolate using wicket. It contains:

var html = "${somehtml}"

document.write(html);

At the moment, if I replace the ${somehtml} with html that contains single quotes, it will obviously break the html.

I tried using URLEncoder.encode() and javascript unescape() but this broke the javascript.

I'm wondering if I can encode/decode to/from base64? Or is there a another solution?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

-小熊_ 2024-10-07 08:52:01

首先将每个反斜杠替换为两个反斜杠,然后将每个引号替换为一个反斜杠和一个引号。像这样的东西

var newstring = mystring.replace(/\\/g, "\\\\").replace(/"/g, '\\"');

First replace every backslash with two backslashes, then replace every quote with a backslash and a quote. Something like

var newstring = mystring.replace(/\\/g, "\\\\").replace(/"/g, '\\"');
Spring初心 2024-10-07 08:52:01

Apache Commons provides a helper class called StringEscapeUtils. It can encode strings so that they can be safely embedded in javascript (ecmascript).

肥爪爪 2024-10-07 08:52:01

我怀疑这就是您正在寻找的,因为您正在动态构建 js,但嵌入式 javascript 文件 (*.ejs) 允许您从外部文件加载标记(可以选择传递自定义数据也是),而不是将所有内容都放在引号中并且看起来通常很混乱。

它至少对开发有用,但我不想向客户端发送更多文件。

http://embeddedjs.com/

<ul>
<% for(var i=0; i<supplies.length; i++) {%>
   <li><%= supplies[i] %></li>
<% } %>
</ul>

someVar += "<ul>";
for(var i=0; i<supplies.length; i++) {
    someVar += "<li>" + supplies[i] + "</li>";
}
someVar += "</ul>";

I doubt this is what you're looking for because you're building the js on the fly but embedded javascript files (*.ejs) allow you to load markup from an external file (with the option to pass custom data in too) rather than putting everything in quotes and looking generally messy.

It's at least useful for development, but I'd rather not have to send more files to the client.

http://embeddedjs.com/

<ul>
<% for(var i=0; i<supplies.length; i++) {%>
   <li><%= supplies[i] %></li>
<% } %>
</ul>

versus

someVar += "<ul>";
for(var i=0; i<supplies.length; i++) {
    someVar += "<li>" + supplies[i] + "</li>";
}
someVar += "</ul>";
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文