gpt4 book ai didi

reactjs - REACT JSX 样式 [对象对象]

转载 作者:行者123 更新时间:2023-12-04 11:21:27 24 4
gpt4 key购买 nike

我正在研究 React 但不了解 JSX 样式。
这里代码。

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script crossorigin src="https://unpkg.com/react@16/umd/react.production.min.js"></script>
<script crossorigin src="https://unpkg.com/react-dom@16/umd/react-dom.production.min.js"></script>
<script crossorigin src="https://cdnjs.cloudflare.com/ajax/libs/babel-standalone/6.26.0/babel.min.js"></script>
</head>
<body>
<div id="disp"></div>
<script type="text/babel">
var root = document.querySelector('#disp')
const cssStyle = {
'color': 'red',
'backgroud-color': '#fff0f0',
'font-size':'2em'
}
const scriptStyle = {
color: 'blue',
backgroundColor: '#fff0f0',
fontSize: '2em'
}
function getDOM() {

return (
<div>
<div style={scriptStyle}>
Look at the stars
</div>
<p stlye={cssStyle}>
Look how they shine for you
</p>
</div>
)
}
ReactDOM.render(getDOM(), root)
</script>
</body>
</html>


问题

scriptStyle 很好,但我无法正常看到 cssStyle。 [对象对象]
那我怎么办?

最佳答案

在 JSX 中,样式是作为对象提供的,键是驼峰式而不是蛇式。例如 background-color将写为 backgroundColor这正是 scriptStyle 中提供的方式对象,这就是它需要赋予样式的方式。除此之外,您在 style={cssStyle} 中还有一个错字。

工作演示

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script crossorigin src="https://unpkg.com/react@16/umd/react.production.min.js"></script>
<script crossorigin src="https://unpkg.com/react-dom@16/umd/react-dom.production.min.js"></script>
<script crossorigin src="https://cdnjs.cloudflare.com/ajax/libs/babel-standalone/6.26.0/babel.min.js"></script>
</head>
<body>
<div id="disp"></div>
<script type="text/babel">
var root = document.querySelector('#disp')
const cssStyle = {
'color': 'red',
'backgroudColor': '#fff0f0',
'fontSize':'2em'
}
const scriptStyle = {
color: 'blue',
backgroundColor: '#fff0f0',
fontSize: '2em'
}
function getDOM() {

return (
<div>
<div style={scriptStyle}>
Look at the stars
</div>
<p style={cssStyle}>
Look how they shine for you
</p>
</div>
)
}
ReactDOM.render(getDOM(), root)
</script>
</body>
</html>


Docs Link

关于reactjs - REACT JSX 样式 [对象对象],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53361334/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com