2018-10-10 18:03:03 -04:00
|
|
|
|
---
|
|
|
|
|
id: 5a24c314108439a4d4036182
|
2020-12-16 00:37:30 -07:00
|
|
|
|
title: 在 React 中添加内联样式
|
2018-10-10 18:03:03 -04:00
|
|
|
|
challengeType: 6
|
2020-09-18 00:13:42 +08:00
|
|
|
|
forumTopicId: 301378
|
2018-10-10 18:03:03 -04:00
|
|
|
|
---
|
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
# --description--
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
在上一次挑战中,你可能已经注意到,除了设置为 JavaScript 对象的`style`属性之外,与 HTML 内联样式相比,React 的内联样式还有其他几个语法差异。首先,某些 CSS 样式属性的名称使用驼峰式命名。例如,最后一个挑战用`fontSize`而不是`font-size`来设置字体的大小。对于 JavaScript 对象属性来说,像`font-size`这样的连字符命名是无效的语法,所以 React 使用驼峰式命名。通常,任何连字符的 style 属性在 JSX 中都是使用驼峰式命名的。
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
除非另有规定,否则所有属性值是长度的(如`height`、`width`和`fontSize`)其单位都假定为`px`。例如,如果要使用`em`,可以用引号将值和单位括起来,例如`{fontSize: "4em"}`。除了默认为`px`的长度值之外,所有其他属性值都应该用引号括起来。
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
# --instructions--
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
如果你有大量样式,你可以将 style`对象`分配给一个常量,以保持代码的组织有序。取消对`styles`常量的注释,并声明具有三个样式属性及对应值的`对象`。使`div`的文字颜色为`"purple"`、字号为`40`、边框为`"2px solid purple"`。然后设置`style`属性,使其等于`styles`常量。
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
# --hints--
|
2020-09-18 00:13:42 +08:00
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
`styles`变量应该是具有三个属性的`对象`。
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
```js
|
|
|
|
|
assert(Object.keys(styles).length === 3);
|
2018-10-10 18:03:03 -04:00
|
|
|
|
```
|
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
`styles`变量的`color`属性应该设置为`purple`。
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
```js
|
|
|
|
|
assert(styles.color === 'purple');
|
|
|
|
|
```
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
`styles`变量应该将`fontSize`属性设置为`40`。
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
|
|
|
|
```js
|
2020-12-16 00:37:30 -07:00
|
|
|
|
assert(styles.fontSize === 40);
|
2018-10-10 18:03:03 -04:00
|
|
|
|
```
|
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
`styles`变量的`border`属性应该设置为`2px solid purple`。
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
```js
|
|
|
|
|
assert(styles.border === '2px solid purple');
|
|
|
|
|
```
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
组件应该渲染一个`div`元素。
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
```js
|
|
|
|
|
assert(
|
|
|
|
|
(function () {
|
|
|
|
|
const mockedComponent = Enzyme.shallow(React.createElement(Colorful));
|
|
|
|
|
return mockedComponent.type() === 'div';
|
|
|
|
|
})()
|
|
|
|
|
);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
`div`元素的样式应该由`styles`对象定义。
|
2020-09-18 00:13:42 +08:00
|
|
|
|
|
2018-10-10 18:03:03 -04:00
|
|
|
|
```js
|
2020-12-16 00:37:30 -07:00
|
|
|
|
assert(
|
|
|
|
|
(function () {
|
|
|
|
|
const mockedComponent = Enzyme.shallow(React.createElement(Colorful));
|
2020-09-18 00:13:42 +08:00
|
|
|
|
return (
|
2020-12-16 00:37:30 -07:00
|
|
|
|
mockedComponent.props().style.color === 'purple' &&
|
|
|
|
|
mockedComponent.props().style.fontSize === 40 &&
|
|
|
|
|
mockedComponent.props().style.border === '2px solid purple'
|
2020-09-18 00:13:42 +08:00
|
|
|
|
);
|
2020-12-16 00:37:30 -07:00
|
|
|
|
})()
|
|
|
|
|
);
|
2018-10-10 18:03:03 -04:00
|
|
|
|
```
|
2020-08-13 17:24:35 +02:00
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
# --solutions--
|
|
|
|
|
|