如何在react的材料-ui中获取密码字段值

时间:2015-07-16 06:29:48

标签: javascript reactjs material

我无法访问<TextField />的值,如果我不写<input type='password'/>那么它工作正常,但为此我得到一个TypeError,' this.refs [this._getRef(...)]。getInputNode不是函数'。

 dialogAction(tag,e){

  console.log(this.refs.password);
  console.log(this.refs.password.getValue());
  this.refs.dialog.dismiss();
}

render(){
let self = this;

let row = this.row,col = this.column;
let standardActions = [
  { text: 'Cancel',onTouchTap: this.dialogAction.bind(this,ProductConstants.CANCEL)},
  { text: 'Submit',onTouchTap: this.dialogAction.bind(this,ProductConstants.SUBMIT)}
];

return (
  <div className="ProductRepository">

    <Dialog ref = 'dialog'
      title="Dialog With Standard Actions"
      actions={standardActions}
      actionFocus="submit"
      modal={true}>
      <TextField ref='password'
        hintText="Password"
        floatingLabelText="Password">
        <input type="password" />
      </TextField>
    </Dialog>
    </div> 
    );}

   }

下面的图片是上述代码的控制台输出。

console output

4 个答案:

答案 0 :(得分:14)

对于材料1.0和反应16.1.1

使用inputRef

  <TextField autoFocus={true} inputRef={el => this.fv = el} 
        placeholder="Required" size="30"></TextField >

要读取行下面的值

console.log(this.fv.value);

答案 1 :(得分:12)

这解决了我的问题:

<TextField ref='password'
    hintText="Password"
    floatingLabelText="Password"
    type="password">
</TextField>

之后

 this.refs.password.getValue()

给出所需的输出。

  

对于React v&gt; = 15.6

<TextField ref={x => this.password = x}
    hintText="Password"
    floatingLabelText="Password"
    type="password">
</TextField>

在inputHandler函数中

this.password.value

答案 2 :(得分:0)

ref="password"分配给输入本身而不是TextField。目前,您正在对某些抽象(可能是某个容器)标记(getValue())执行TextField,而不是input本身。

Here是怎么做的。

答案 3 :(得分:0)

你可以得到这样的输入值:

this.refs.password.input.value;