作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 React Redux 新手。这是我正在开发的一个简单应用程序。但错误是我无法通过 Action 连接到商店。
这是我的错误
utils.js:78 Uncaught Error: action is missing a listen method
主题列表.js
var React = require('react');
var Reflux = require('reflux');
var TopicStore = require('../stores/topic-store');
var Actions = require('../actions');
module.exports = React.createClass({
mixins:[
Reflux.listenTo(TopicStore,'onChange')
],
getInitialState:function () {
return{
topics:[]
}
},
componentWillMount:function () {
//Actions.getTopics()
Actions.getTopics()
},
render:function () {
return <div className="list-group">
ToPic List
{this.renderTopics()}
</div>
},
renderTopics:function () {
return this.state.topics.map(function(topic) {
return <li key={topic.id}>
{topic.description}
</li>
})
},
onChange:function (evet,topics) {
this.setState({topics:topics})
}
});
actions.js
var Reflux = require('reflux');
module.exports = Reflux.createAction([
'getTopics',
]);
主题商店.js
var Api = require('../utils/api');
var Reflux = require('reflux');
var Actions = require('../actions');
module.exports = Reflux.createStore({
listenables:[Actions],
getTopics:function () {
return Api.get('topics/defaults')
.then(function (json) {
this.topics = json.data;
this.triggerChange();
}.bind(this));
},
con:function () {
console.log('Working')
},
triggerChange:function () {
this.trigger('change',this.topics)
}
});
最佳答案
错误消息意味着您正在尝试收听无法收听的内容(即它没有监听方法。)
这意味着错误的来源可能是:
listenables:[Actions]
来自topic-store.js
Reflux.listenTo(TopicStore,'onChange')
来自topic-list.js
我相信是前者,因为actions.js
中有一个拼写错误。 ,方法为 Reflux.createActions
,不是Reflux.createAction
。
关于javascript - Uncaught Error : Action is missing a listen method React/Reflux?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39147200/
我是一名优秀的程序员,十分优秀!