javascript - 状态更改时不必要地触发 Redux 操作

标签 javascript node.js reactjs redux socketcluster

我正在尝试将 socketCluster 与一个简单的 redux 应用集成。目前,只有一个功能可以获取组件中当前状态的值并通过中间件将其发送到服务器。

这是我的 actions.js 文件

export function signupRequest(creds){
  return{
    type: SIGNUP_REQUEST,
    isFetching: true,
    isAuthenticated: false,
    creds
  }
}

我的 reducer :

function signUp(state={
  isFetching:false,
  isAuthenticated: localStorage.getItem('id_token')? true : false
},action)
{
  switch(action.type){
    case SIGNUP_REQUEST:
      return Object.assign({},state,{
        isFetching:true,
        isAuthenticated: false,
        user: action.creds
      })
}

我有一个中间件功能,负责将输入发送到服务器

中间件.js

export default socket => store => next => action => {
  socket.emit('action',action);
}

我的客户端 index.js 文件

const socket = connect();
const createStoreWithMiddleware = applyMiddleware(middlewares(socket))(createStore);
const store = createStoreWithMiddleware(reducer);

let rootElement = document.getElementById('root')

render(
  <Provider store={store}>
    <App/>
  </Provider>,rootElement
)

我的 App.jsx 容器:

class App extends Component{

  render(){
      const {dispatch,isAuthenticated,errorMessage,isFetching} = this.props;
    return(
      <Signup
        onButtonClick = {this.props.signupRequest}/>
    )
  }
}

function mapStateToProps(state){
  const {isAuthenticated,errorMessage,isFetching} = state.signUp

  return {
    isAuthenticated,
    errorMessage,
    isFetching
  }
}

function mapDispatchToProps(dispatch){
  return bindActionCreators({signupRequest:signupRequest},dispatch)
}

export default connect(mapStateToProps,mapDispatchToProps)(App);

我的注册组件:

class Signup extends Component{

  constructor(props){
    super(props);

    this.state = {name:''};
    this.onInputChange = this.onInputChange.bind(this)
  }

  onInputChange(event){
    this.setState({name:event.target.value})
  }

  render(){
    return (
      <div>
        <input type="text"
          ref="username"
          className="SignupUsername"
          placeholder="Username"
          value = {this.state.name}
          onChange={this.onInputChange}
          />
        <button onClick= {this.props.onButtonClick(this.state.name)} >
          Signup
        </button>
      </div>
    )
  }
}

export default Signup

我面临的问题是中间件/操作在输入中被每次按键触发。我只想在按钮单击事件上调用中间件。

这是我在服务器端得到的输出

action recieved : { type: 'SIGNUP_REQUEST',
  isFetching: true,
  isAuthenticated: false,
  creds: 'a' }
action recieved : { type: 'SIGNUP_REQUEST',
  isFetching: true,
  isAuthenticated: false,
  creds: 'as' }
action recieved : { type: 'SIGNUP_REQUEST',
  isFetching: true,
  isAuthenticated: false,
  creds: 'asd' }
action recieved : { type: 'SIGNUP_REQUEST',
  isFetching: true,
  isAuthenticated: false,
  creds: 'asda' }
action recieved : { type: 'SIGNUP_REQUEST',
  isFetching: true,
  isAuthenticated: false,
  creds: 'asdas' }
action recieved : { type: 'SIGNUP_REQUEST',
  isFetching: true,
  isAuthenticated: false,
  creds: 'asdasd' }

如您所见,套接字在输入中的每个按键上发送操作。 点击按钮也不会调用中间件

编辑 - 我尝试将注册组件转换为容器 - 但我似乎仍然遇到同样的问题

class Signup extends Component{

  constructor(props){
    super(props);

    this.state = {name:''};
    this.onInputChange = this.onInputChange.bind(this)
  }

  onInputChange(event){
    this.setState({name:event.target.value})
  }

  render(){
    return (
      <div>
        <input type="text"
          ref="username"
          className="SignupUsername"
          placeholder="Username"
          value = {this.state.name}
          onChange={this.onInputChange}
          />
        <button onClick= {this.props.signupRequest(this.state.name)} >
          Signup
        </button>
      </div>
    )
  }
}

function mapDispatchToProps(dispatch){
  return bindActionCreators({signupRequest:signupRequest},dispatch)
}

export default connect(null,mapDispatchToProps)(Signup)

最佳答案

原来问题出在 onClick 事件上 - 我将 onClick 事件转换为如下函数:

<button onClick= {() => this.props.signupRequest(this.state.name)} >
  Signup
</button>

反对

  <button onClick= {this.props.signupRequest(this.state.name)} >
          Signup
        </button>

关于javascript - 状态更改时不必要地触发 Redux 操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36548930/

相关文章:

node.js - Mongoose 和其他集合一起填充空集合

reactjs - React Native fetch 抛出 undefined is not a functionvaluing ((0,_reactNative.fetch)

reactjs - 如何解决 React Material UI 自动完成组件的标签重叠问题

node.js - 使用 Elasticsearch 查询字符串匹配多个字段

javascript - 如何在 css/js 中显示点击?

javascript - 从 HTML 读取数字,添加数字并返回 HTML

asp.net - 在 ASP.MVC 的部分和 View 上使用 JavaScript 的最佳实践?

javascript - Selenium (Node.js) 截屏速度太慢

javascript - 从公共(public)文件夹 ReactJS 中获取本地 JSON 文件

javascript - youtube api,Firefox 4.0。 iframe无法加载视频