尝试访问 RecipeList.js 和 Recipe.js 的 .props 时出现语法错误。
这是 Recipe.js 的代码示例:
import React, {Component} from 'react';
import "./Recipe.css";
class Recipe extends Component {
// props: any; uncommenting this will fix the bug
render() {
// don't have to use return and parentheses for arrow with JSX
const ingredients = this.props.ingredients.map((ing, ind) => (
<li key={ind}>{ing}</li>
));
const {title, img, instructions} = this.props
return (
<div className="recipe-card">
<div className="recipe-card-img">
<img src={img} alt={title}/>
</div>
<div className="recipe-card-content">
<h3 className="recipe-title">
{title}
</h3>
<h4>
Ingredients:
</h4>
<ul>
{ingredients}
</ul>
<h4>
Instructions:
</h4>
<p>
{instructions}
</p>
</div>
</div>
)
}
}
但是,该项目不会引发任何编译时错误,并且该网站运行良好。
应用程序运行良好且没有 chrome 控制台或终端错误的屏幕截图
我想这少了我的代码,更因此与typescript或某种预设配置使用Javascript有麻烦识别.props属性为每个组件,因为我有类似的问题,当我建立VScode做阵营教程项目进我的编辑器(为了确定起见,我什至从站点复制粘贴了最终的 index.js 代码),尽管该应用程序运行良好,没有编译时错误。
解决这个问题的唯一方法是,如果我真的硬编码并为每个类创建一个 props 属性并将其设置为任何像这样:
这是我更新的依赖项
"dependencies": {
"@types/react": "^16.4.13",
"prop-types": "^15.6.2",
"react": "^16.5.0",
"react-dom": "^16.5.0",
"react-scripts": "1.1.5",
"typescript": "^3.0.3"
}