我正在使用没有 node.js 的 react.js,我想在我的 html 文件中链接多个脚本文件,但我不能。
基本上,这是我的代码:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="icon" type="image/png" href="src/reactFavicon.png">
<link href="https://fonts.googleapis.com/css?family=Ma+Shan+Zheng|Righteous&display=swap" rel="stylesheet">
<title>Users</title>
<script type="application/javascript" src="https://unpkg.com/react@16.0.0/umd/react.production.min.js"></script>
<script type="application/javascript" src="https://unpkg.com/react-dom@16.0.0/umd/react-dom.production.min.js"></script>
<script type="application/javascript" src="https://unpkg.com/babel-standalone@6.26.0/babel.js"></script>
</head>
<body>
<div id="root"></div>
<script type="text/babel">
const rootElement = document.getElementById('root')
class Users extends React.Component {
constructor(props) {
super(props)
this.state = {
items:[],
isLoaded: false
}
}
componentDidMount() {
fetch('https://jsonplaceholder.typicode.com/users')
.then(res => res.json())
.then(json => {
this.setState({
isLoaded: true,
items: json
})
})
}
render() {
const title = this.props.title;
var {isLoaded, items} = this.state;
if(!isLoaded) {
return <div>Loading...</div>
} else {
return(
<div class="Users">
{title}
<ul>
{items.map(item => (
<li key={item.id}>
{item.name} | {item.email} ||| lives in {item.address.street}, {item.address.suite} ({item.address.city}), his/her phone number is {item.phone} and works in <strong>{item.company.name}</strong>.
</li>
)) }
</ul>
</div>
)
}
}
}
function App() {
return (
<div>
<Users
title = "Users"
/>
</div>
)
}
ReactDOM.render(
<App />,
rootElement
)
</script>
</body>
</html>
我想将脚本文件 (text/babel) 分离到一个单独的文件并将其链接到 html,但是尽管 VS Code 没有显示任何错误,但这不起作用,我不知道该怎么做,我可以' t 使用 Node(他们不在我的工作中使用它,我无能为力)。
这是不起作用的代码:
<body>
<div id="root"></div>
<script type="text/babel" src="users.js"></script>
<body>
你也可以使用这个例子:
https://dev.to/luispa/lets-try-react-without-nodejs-3a7
就像那样,但是在 html 文件中分离和链接/引用了脚本,请帮助我...