英文:
How to use spaces in Template Literals?
问题
我有一个<li>
元素,使用模板字符串显示动态内容。
<li className='floatLeft'><span><b>Galley Details</b></span><br/>{`${galleyCartsDet[0].quantity} Full Cart ${galleyCartsDet[1].quantity} Half Cart${galleyCartsDet[2].quantity} SMU${galleyCartsDet[3].quantity} Stowage`}</li>
如何在给定的模板字符串中使用空格?
`${galleyCartsDet[0].quantity} Full Cart ${galleyCartsDet[1].quantity} Half Cart${galleyCartsDet[2].quantity} SMU${galleyCartsDet[3].quantity} Stowage`
英文:
I have a <li>
element showing dynamic content using Template Literals (template strings).
<li className='floatLeft'><span><b>Galley Details</b></span> <br/>{`${galleyCartsDet[0].quantity} Full Cart ${galleyCartsDet[1].quantity} Half Cart${galleyCartsDet[2].quantity} SMU${galleyCartsDet[3].quantity} Stowage`}</li>
How can I use spaces in the given template string?
`${galleyCartsDet[0].quantity} Full Cart ${galleyCartsDet[1].quantity} Half Cart${galleyCartsDet[2].quantity} SMU${galleyCartsDet[3].quantity} Stowage`
答案1
得分: 1
You can use spaces in a template string in this way:
\u00A0\u00A0${option.value}\u00A0\u00A0
\u00A0
= 不间断空格
\u0020
= 普通空格
英文:
You can use spaces in a template string in this way:
`\u00A0\u00A0${option.value}\u00A0\u00A0`
\u00A0
= non-breaking space
\u0020
= normal space
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论