gpt4 book ai didi

javascript - 如何在 react 中运行脚本

转载 作者:行者123 更新时间:2023-12-03 05:08:18 25 4
gpt4 key购买 nike

嘿,我有一个 react 应用程序,我有一个输入字段,我想在输入实际密码时屏蔽它(type =“password”)。

我找到了一个 javascript 代码,它可以满足我的需要,但我似乎无法让它与 React 一起运行。

这是屏蔽函数的代码:

http://pastebin.com/vqqaiDuB

但我无法在我的 View 组件中使用它。

我确实尝试过:

module.exports = MaskedPassword;

但是无法使用该类?!

我肯定错过了一些大事......

如何导入它:

import maskedInput from './../../public/MaskedPassword';

这就是我的组件的样子:

export default class DriversLicense extends Component {
constructor(props){
super(props);
this.state ={};
}

componentDidMount() {
maskedInput(document.getElementById("demo-field"), '\u25CF');
}

render() {
return (
<div>
<form id="demo-form" action="#">
<fieldset>
<input type="password" className="password" id="demo-field" name="pword" onChange={this.demoChange}/>
</fieldset>
</form>
</div>
);
}

}

这给了我:

 this.createContextWrapper is not a function

最佳答案

通常这是调用外部库来在渲染后对组件进行更改的方法,我建议找到您的库的 React 版本,因为它可能会出现绑定(bind)问题(this)。希望这个例子有帮助。

function maskedInput(ele, symbol, obj) {  
//this here is not the function
ele.value = this.someOtherFunction()

}

maskedInput.prototype = {
someOtherFunction: function(){
return "Hello"
}
}

function maskedInputGood(ele, symbol, obj) {
const someOtherFunction = function(){
return "Hello"
}
ele.value = someOtherFunction()

}

maskedInput.prototype = {
someOtherFunction: function(){
return "Hello"
}
}

var App = React.createClass({

componentDidMount() {
maskedInputGood(document.getElementById("demo-field"), '\u25CF');
maskedInput(document.getElementById("demo-field"), '\u25CF');
},

render() {
return (
<div>
<form id="demo-form" action="#">
<fieldset>
<input type="password" className="password" id="demo-field" name="pword" onChange={this.demoChange}/>
</fieldset>
</form>
</div>
);
}
})

ReactDOM.render(<App />,document.getElementById('app'))
<html>
<body>

<div id='app'></div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react-dom.min.js"></script>

</body>
</html>

关于javascript - 如何在 react 中运行脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41935490/

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