gpt4 book ai didi

javascript - 无法找到 .jsx 和 js 文件之间的真正区别

转载 作者:行者123 更新时间:2023-11-28 18:15:45 31 4
gpt4 key购买 nike

My .js file is:-

var React = require('react');
export default class AmortizationChart extends React.Component {
render() {
var items = this.props.data.map(function (year, index) {

return (

<tr key={index}>

<td>{index + 1}</td>

<td className="currency interest">{Math.round(year.interestY).toLocaleString()}</td>

<td className="currency">{Math.round(year.balance).toLocaleString()}</td>

</tr>

);

});

Now same I can Write also in .jsx file.So what is the difference which file I sould take .js or .jsx?

最佳答案

这个位 JSX:

<tr key={index}>
<td>{index + 1}</td>
<td className="currency interest">{Math.round(year.interestY).toLocaleString()}</td>
<td className="currency">{Math.round(year.balance).toLocaleString()}</td>
</tr>

这仅在您将 .js 文件加载为 text/babel 时才有效。使用 text/javascript 尝试一下,您将收到以下错误:

Uncaught SyntaxError: Unexpected token <

React 自己的文档有一篇关于 JSX 的好文章:JSX In Depth .

关于javascript - 无法找到 .jsx 和 js 文件之间的真正区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40785425/

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