如何“回响” EJS(一个 JavaScript 模板)中的文本用于检查单选按钮
我需要帮助 我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
EJS是一个简单易用的引擎,不需要在模板上投入太多的学习成本。如果您查看源,你会发现一些有趣的事情。
所以:
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.
So:
从未使用过 EJS,但根据其他模板引擎的经验,这应该可行:
当您说
<%=
时,您将输出随后的 JavaScript 评估结果。例如<%= a %>
应该输出当时变量a
的内容。模板中不需要显式回显 - 默认情况下应回显
<% %>
之外的任何内容,当然考虑到某些块是有条件回显的,如上面的if
,或者在使用循环等时可以相乘。Never used EJS, but from experience from other templating engines, this should work:
When you say
<%=
, you are to output the result of a JavaScript evaluation that follows. E.g.<%= a %>
should output the contents of variablea
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 aboveif
, or may be multiplied when using loops, etc.