Skip to content

Commit 5b65778

Browse files
committed
fixed:[cause]: Error: The style prop expects a mapping from style properties to values, not a string. For example, style={{marginRight: spacing + 'em'}} when using JSX.
1 parent 7d523ce commit 5b65778

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

docx/introduction/mixed/glob.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111

1212
## 示例
13-
| <div style="width:60px">通配符</div> | 描述 | 示例 | 匹配 | 不匹配 |
13+
| <div style={{width:'60px'}}>通配符</div> | 描述 | 示例 | 匹配 | 不匹配 |
1414
| :----: | :----: | :----: | :----: | :----: |
1515
| * | 匹配0个或多个字符,包含空串 | Law* |Law, Laws和Lawer | La, aw |
1616
| ? | 匹配1个字符 | ?at|cat, bat | at |

docx/introduction/mixed/wildcard.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
通配符是文本值中代替未知字符的特殊字符,可方便使用类似但不相同的数据查找多个项目。 通配符也有助于获得基于特定模式匹配的数据。
88

9-
| <div style="width:60px">字符</div> | 说明 | 示例 |
9+
| <div style={{width:'60px'}}>字符</div> | 说明 | 示例 |
1010
| :----: | -------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- |
1111
| * | 匹配任意字符数。 您可以在字符串中使用星号 (*)。 | "wh*" 将找到 what、white 和 why,但找不到 awhile 或 watch。 |
1212
| ? | 在特定位置中匹配单个字母。 | "b?ll"可以找到 ball、bell 和 bill。 |

0 commit comments

Comments
 (0)