作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在内容属性的字符串之间给出行间距。怎样才能给呢?就像万维网字符串之后一样,我想从新行开始一个新字符串。在这里查看我的代码注意:我在 React Native 应用程序中使用它
const data = [
{
title: 'What is Html',
content:
'HTML stands for HyperText Markup Language. HTML is the basic building block of World Wide Web.',
},
]
最佳答案
尝试使用反引号 `` 而不是 ""。那会解决你的问题。喜欢
content: `HTML stands for HyperText Markup Language
HTML is the basic building block of World Wide Web.
`
查看工作示例 snack .
希望有帮助。如有疑问,请放心。
关于javascript - 如何在 native react 中的对象属性字符串中给出行空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59334017/
我是一名优秀的程序员,十分优秀!