如何“回响” EJS(一个 JavaScript 模板)中的文本用于检查单选按钮

发布于 2025-01-02 14:42:36 字数 638 浏览 0 评论 0原文

我需要帮助 我正在使用 EJS javasript 模板编写一个代码片段,并根据从服务器返回的数据检查单选按钮。假设服务器返回一个 json(名为 my_data),这是我的代码

<input type="radio" name="is_public" value=1 <% if(my_data.is_public){ %> <%='checked' %> <% } %> />Public
<input type="radio" name="is_public" value=0 <% if(!my_data.is_public){ %> <%='checked' %> <% } %> />Private

,但它不起作用!虽然 my_data.is_public = 0,但始终会检查 Public。

任何人都可以提供帮助吗?

顺便说一句,有没有办法在 EJS 中“回显”这样的文本:

<input type="radio" name="is_public" value=1 <% if(my_data.is_public){ echo 'checked' } %> />Public

I need help
I'm using EJS javasript template to write a code snippet two check a radio button depending on data returned from the server. Let say the server returns a json (named my_data) and here is my code

<input type="radio" name="is_public" value=1 <% if(my_data.is_public){ %> <%='checked' %> <% } %> />Public
<input type="radio" name="is_public" value=0 <% if(!my_data.is_public){ %> <%='checked' %> <% } %> />Private

But it doesnt work! the Public is always checked although my_data.is_public = 0.

Any one can help?

btw, are there the way to "echo" a text like this in EJS:

<input type="radio" name="is_public" value=1 <% if(my_data.is_public){ echo 'checked' } %> />Public

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

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

发布评论

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

评论(2

流星番茄 2025-01-09 14:42:36

EJS是一个简单易用的引擎,不需要在模板上投入太多的学习成本。如果您查看,你会发现一些有趣的事情。

// the same as echo string
__append(string)         

所以:

<input type="radio" name="is_public" value=1 <% if(my_data.is_public){ __append('checked') } %> />Public

EJS is a simple and easy to use engine, and does not need to put too much learning cost on the template. If you look at the source, you'll find something funny.

// the same as echo string
__append(string)         

So:

<input type="radio" name="is_public" value=1 <% if(my_data.is_public){ __append('checked') } %> />Public
橘寄 2025-01-09 14:42:36

从未使用过 EJS,但根据其他模板引擎的经验,这应该可行:

<input type="radio" name="is_public" value=1 <% if(my_data.is_public){ %> checked="checked" <% } %> />Public
<input type="radio" name="is_public" value=0 <% if(!my_data.is_public){ %> checked="checked" <% } %> />Private

当您说 <%= 时,您将输出随后的 JavaScript 评估结果。例如<%= a %>应该输出当时变量a的内容。

模板中不需要显式回显 - 默认情况下应回显 <% %> 之外的任何内容,当然考虑到某些块是有条件回显的,如上面的 if,或者在使用循环等时可以相乘。

Never used EJS, but from experience from other templating engines, this should work:

<input type="radio" name="is_public" value=1 <% if(my_data.is_public){ %> checked="checked" <% } %> />Public
<input type="radio" name="is_public" value=0 <% if(!my_data.is_public){ %> checked="checked" <% } %> />Private

When you say <%=, you are to output the result of a JavaScript evaluation that follows. E.g. <%= a %> should output the contents of variable a at that time.

There's no need for explicit echo in templates - anything outside <% %> should be echoed by default, of course considering that some blocks are conditionally echoed, like the above if, or may be multiplied when using loops, etc.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文