- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 redux 的新手,所以我可能在这里做了一些愚蠢的事情。
我有一个 LoginComponent,它应该在全局存储中将一个名为 loggedIn
的变量设置为 true
,表示用户已登录。然后导航栏应该能够然后根据该变量是否为真显示按钮(登录/注册或注销)。
我有一个如下所示的登录组件:
class LoginComponent extends Component {
constructor(props) {
super(props);
//... local state stuff for render()
}
login() {
let self = this;
axios.post('/user/login', {
username: this.state.username,
password: this.state.password
}).then(function (response) {
self.setState({errorMessage: ''});
self.props.setLoggedIn(true); //Here is the action that should be dispatching to change the variable.
self.props.history.push('/');
}).catch(function (error) {
console.log(error);
});
}
render() {
return (
//A simple login form with username/password.
);
}
}
function mapStateToProps(state) {
const { loggedIn } = state;
return { loggedIn };
}
function mapDispatchToProps(dispatch) {
return bindActionCreators({ setLoggedIn }, dispatch)
}
export default connect(mapStateToProps, mapDispatchToProps)(LoginComponent);
然后我在 UserActions.js
中执行操作:
export function setLoggedIn(loggedIn) {
const action = {
type: 'SET_LOGGED_IN',
loggedIn
};
return action;
}
后面是UserReducer.js
中的reducer:
export default ((state = [], action) => {
switch (action.type) {
case 'SET_LOGGED_IN':
let { loggedIn } = action;
return loggedIn;
default:
return state;
}
});
不知何故,我应该能够通过 this.props
在我的 NavBarComponent
中访问它:
class NavBarComponent extends Component {
test() {
console.log(this.props);
}
render() {
console.log(this.props);
return (
<div><button className="btn btn-default btn-header" onClick={() => {this.test()}}>Check</button></div>
);
}
}
function mapStateToProps(state) {
const { loggedIn } = state;
return { loggedIn };
}
export default connect(mapStateToProps, null)(NavBarComponent);
但是,在我的控制台中,在我的 NavBarComponent 中调用 test()
函数时,我看到:
对象 {history: Object, loggedIn: undefined, dispatch: function}
那么,问题是,为什么 loggedIn 未定义而不是 true 或 false?
编辑
这是我的商店/提供商在 index.js 中的样子:
let store = createStore(AppReducer);
ReactDOM.render(
<Provider store={store}>
<div>
<Router path="/" history={browserHistory}>
<div>
<NavBarComponent history={browserHistory}/>
<Route path="/login" component={LoginComponent} />
<Route path="/register" component={RegisterComponent} />
<Route exact path="/" component={AppComponent}/>
</div>
</Router>
</div>
</Provider>, document.getElementById('root')
);
还有我的 AppReducer:
import { combineReducers } from 'redux';
import UserReducer from '../User/UserReducer'
export default combineReducers({
UserReducer
});
最佳答案
我认为问题出在 UserReducer.js
export default ((state = [], action) => {
switch (action.type) {
case 'SET_LOGGED_IN':
let { loggedIn } = action;
return loggedIn;
default:
return state;
}
});
没有看到商店是如何创建的,我猜这应该看起来更像
export default ((state = {}, action) => {
switch (action.type) {
case 'SET_LOGGED_IN':
let { loggedIn } = action;
// assuming you have the spread operator available - if not, use Object.assign({}, state, { loggedIn })
return { ...state, loggedIn };
default:
return state;
}
});
首先,初始状态。你的默认 state
为 []
,这是一个空数组,但你像使用对象一样使用它,所以我将它切换为 {}
,一个空对象。
其次,reducer 函数应该返回对状态的不可变更改,但仍必须返回整个状态。因此,您的 SET_LOGGED_IN
处理程序正在将状态更改为单个 bool 值,而不仅仅是更改 loggedIn
值
let { loggedIn } = action;
return loggedIn;
spread operator or Object.assign
可用于复制现有状态,但替换 loggedIn
值
let { loggedIn } = action;
// assuming you have the spread operator available - if not, use Object.assign({}, state, { loggedIn })
return { ...state, loggedIn };
跟踪这类问题的一个好工具是 redux devtools .您可以看到调度了哪些操作以及状态如何受到影响。
或者,一个简单的技巧是将 console.log(state)' 放在
mapStateToProps` 函数中以查看您必须使用的内容
function mapStateToProps(state) {
console.log(state)
const { loggedIn } = state;
return { loggedIn };
}
如果您将状态视为
{
/* other stuff */
UserReducer: {
loggedIn: true
}
/* maybe more stuff */
}
那么我假设您使用的是 combineReducers
当您创建商店时。这是正常行为,例如
const store = createStore(combineReducers({ SomeReducer, UserReducer, OtherReducer })
combineReducers
的正常行为是将状态的每个切片嵌套在合并的 reducer 映射的键中。
如果是这种情况,那么您应该使用完整路径来访问组件上的状态
function mapStateToProps(state) {
return {
loggedIn: state.UserReducer.loggedIn
};
}
如果您想更改 key 以更好地代表您的域,您可以在组合时使用不同的 key
const store = createStore(combineReducers({ someReducer, user: UserReducer, otherReducer })
function mapStateToProps(state) {
return {
loggedIn: state.user.loggedIn
};
}
关于javascript - react /归零 : Can't access store variable as props from another component after action dispatched?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43444715/
我正在尝试编写 Access Access 数据库的脚本,以便在命令行上使用。 Access 数据库使用工作组文件进行保护。 Dim oApp, sWGF,myWS Set sApp = Create
我有一个包含数据表的表格。我希望用户能够选择多行,单击按钮并运行一些 sql 查询并对这些行执行一些工作。 查看我的 VBA 代码,我发现如何使用 CurrentRecord 属性 Access 最后
如果我在某个网络位置有 Microsoft Access 2007 数据库,那么可以使用该数据库的客户端计算机的数量是否有限制?客户端不会安装 Access,而是使用 Access Runtime 2
我正在开发一个注册系统。但我收到此错误:You tried to execute a query that does not include the specified expression.. 我正
我有一个产品设计为使用 MS Access 文件作为数据库的桌面产品。 现在,一些用户需要将它安装在几台 PC(比如说 2 或 3 台)上并共享数据库。 我想将 MS Access 文件放在共享文件夹
我接手了一个旧的软件项目,该项目使用 MS Access 数据库来存储数据。但是数据库不会在 Access 中打开,如下所示: "You do not have the necessary permi
我有一个文件夹,里面装满了 100 多个 Access97 文件。我需要将它们全部更新到 Access2003。 我可以手动完成,但使用 VBA 可能会快很多。 有没有人会有一个片段可以做到这一点?或
我正在通过 SQL Server 迁移助手 (SSMA) 将数据从 Access 数据库迁移到 SQL Server。 Access 应用程序将继续与转换为链接表的本地表一起使用。 一个连续的表单在加
我正在通过 SQL Server 迁移助手 (SSMA) 将数据从 Access 数据库迁移到 SQL Server。 Access 应用程序将继续与转换为链接表的本地表一起使用。 一个连续的表单在加
我的公司用 Visual Basic 6 开发了一个应用程序。 该应用程序通过 ODBC 数据源使用 Access 数据库。 Access 数据库是一个扩展名为“.mdb”的文件。 在以下环境中运行应
我一直在尝试让 Microsoft Access 从主 Access 窗口中“退出”,以便我可以隐藏 Access 窗口并仅在桌面上显示表单,以便可以轻松地将其放置在其他应用程序旁边。 起初我发现了一
我想在 access 2010 中使用 access 2000 和 2003 数据库。由于我不想检查一切是否手动工作,我正在寻找一种工具来分析 VBA 代码以查找使用 access 2010 发生的错
所以我有一个 Excel 工作簿,其中有一个很好的 shaperange 对象的全局 map 。通过一些非常简单的代码,我可以更改颜色、将国家/地区集合分组和取消分组为数组等......并且效果非常好
我们希望有大约 35-40 人通过共享驱动器上的脚本写入 Access 数据库。这些指标分解为他们需要每小时写大约 3-7 次。 Access 会支持这一点而不会对我产生影响吗? 是的,我很乐意将其用
我正在寻找一种使用 VBA 代码从外部数据库文件中删除 VBA 模块的方法。名为“myfile.accdb”的外部文件有一个名为“mod1”的模块,我希望能够在单独的项目中使用 VBA 代码删除该模块
我在 Access 2003 数据库(在 Access 2007 中开发)中有三个表单,它们处于父级 -> 子级 -> 孙子级关系中。在子窗体的 'Form_Load' 子窗体中,我设置了孙子窗体的一
MS Access 2007 存在拒绝在设计模式下显示表单的问题。我可以看到表单的代码(如果我查看显示表单的按钮的事件属性),但我看不到作为 GUI 布局的表单。而且,当我尝试从应用程序的主窗口调用此
我编写了代码,使用 Excel 中的下拉列表提供的标准将两个表连接起来,然后将数据返回到电子表格上的特定位置(工作表上已经有标题)。 这在我的机器上和其他机器上使用 MS Access 的机器上都可以
我正在开始构建一个应用程序,该应用程序从给定的根路径开始遍历文件夹结构,并将所有找到的 Access 1997 .mdb 文件转换为较新的 Access 2007/2010 .accdb 格式。但是,
我有一个表单和一个按钮。我想通过单击按钮打开另一个表单,并将参数从父表单传递到子表单(子表单的 RecordSource 有参数)。我该怎么做? 最佳答案 您可以通过引用表单的对象来引用调用表单的任何
我是一名优秀的程序员,十分优秀!