gpt4 book ai didi

javascript - 获取 props 值的子字符串 - React

转载 作者:行者123 更新时间:2023-12-03 07:02:11 26 4
gpt4 key购买 nike

假设我有一个类,并且正在提取 Prop 值

class Body extends React.Component {
render() {
var value = this.props.value;

这工作正常,我得到了我想要的值(它是一个字符串 - 我用 typeof 函数检查过)。

但是,现在我想获取该值的子字符串:

class Body extends React.Component {
render() {
var value = this.props.value.substring(0,2);

我收到一条错误消息,无法读取 null 的属性“子字符串”

有什么想法吗?

最佳答案

这就是你所拥有的default props例如,只需将 prop 默认设置为空字符串即可。

getDefaultProps: function() {
return {
value: ''
};
}

关于javascript - 获取 props 值的子字符串 - React,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36994552/

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