最佳答案
即使我已经应用了 protype 验证,我的编辑器在为 hasvacancy
道具传递布尔值时仍会抛出一个错误。以下是我所看到的:
错误: ‘ SyntaxError: JSX 值应该是一个表达式或引用的 JSX 文本’
我知道我正在传递一个字符串类型的值作为“ hasvoid”道具,但是我需要做什么才能通过道具传递一个布尔值或其他数据类型。
import React from 'react';
import { render } from 'react-dom';
class VacancySign extends React.Component{
render() {
console.log('------------hasvacancy------', this.props.hasvacancy);
if(this.props.hasvacancy) {
return(
<div>
<p>Vacancy</p>
</div>
);
} else {
return(
<div>
<p>No-Vacancy</p>
</div>);
}
}
}
VacancySign.propTypes ={
hasvacancy: React.PropTypes.bool.isRequired
}
render(<VacancySign hasvacancy='false'/> ,
document.getElementById('root'));