React JSX:如何将 props 设置为占位符属性

问题描述 投票:0回答:2

我有一个输入标签,我正在尝试将占位符的内容设置为组件的道具。编译 JSX 并在浏览器中运行后,占位符根本不显示。它也不会抛出任何错误。我怎样才能做到这一点?

<input type="text" onChange={this.props.handleChange} placeholder={this.props.name} />
input placeholder reactjs
2个回答
11
投票

子组件中这段代码似乎没有什么问题。当您实现它时,占位符应该显示得很好。

这是我在父级中设置的方式:

import React, { Component } from 'react';
import Title from'./Title';
import TestList from'./TestList';

export default class Layout extends Component {
    constructor() {
        super();
        this.state = {
          title: 'Moving Focus with arrow keys.',
          placeholder:'Search for something...'
        };
    }

    render() {    
        return (
            <div >
                <Title title={ this.state.title } />
                <p>{ this.getVal() }</p>
                <TestList placeholderText={this.state.placeholder} />
            </div>
        );
    }
}

这是我在孩子中显示它的方式:

import React, { Component } from 'react';

export default class TestInput extends Component {
    constructor(props){
        super(props);
    };

    render() {
        return (
            <div>
              <input type="search" placeholder={this.props.placeholderText} />
            );
        } 
    }
}

回复有点晚了,但希望对你有帮助! :-)


1
投票

另一个答案是:: 父组件

import React, { Component } from 'react';
import TextView from'./TextView';

export default class DummyComponent extends Component {
    constructor() {
        super();
        this.state = {

        };
    }

    render() {    
        return <TextView placeholder = {"This is placeholder"} />
    }
}

子组件

import React, { Component } from 'react';

export default class TextView extends Component {
    constructor(props){
        super(props);
    };

    render() {
        const { placeholder } = this.props;
        return <input type="text" placeholder = {placeholder} />
    }
}
© www.soinside.com 2019 - 2024. All rights reserved.