2 回答
TA贡献1906条经验 获得超3个赞
<h5 className="recipes__title"> //An html header
//Containing...
{
item.recipe.label < 20 ? // If the item.recipe.label is less than 20 then...
`${item.recipe.label}` // the label
: `${item.recipe.label.substring(0, 25)} //else the first 25 characters of the label followed by
...` // the string "..."
}
</h5>
您可以在此处找到有关三元运算符(有条件地解析为两个表达式之一的表达式)的信息
您可以在此处找到有关模板文字(可以包含要解析的 javascript 的字符串)的信息
TA贡献1827条经验 获得超7个赞
JSX 部分:
<element> { // You can put your Javascript here but mostly inline script. } </element
`${...}`
这是 ES6 中引入的字符串模板。它用于构建字符串。${}
表示要处理JS,变量名或函数调用。
子串(0, 25)
这是检查标签是否最多 25 个字符的部分。如果不是,它会选择前 25 个字符,然后在其后添加省略号(...
)。
添加回答
举报