Art*_*m S 3 reactjs react-redux react-admin
1. 从生命周期回调中调用。 我有如下代码:
// app.js
<Admin>
<Resource name="FooList" list={FooList} />
</Admin>
// FooList.js
class FooList extends React.Component {
componentDidMount () {
showNotification("foo")
}
}
export default connect(null, {showNotification})(FooList)
Run Code Online (Sandbox Code Playgroud)
当组件安装时,控制台出现错误:
Warning: React does not recognize the `showNotification` prop on a DOM element. If you intentionally want it to appear in the DOM as a custom attribute, spell it as lowercase `shownotification` instead. If you accidentally passed it from a parent component, remove it from the DOM element.
Run Code Online (Sandbox Code Playgroud)
2. 调用某个事件(例如点击)。在其他情况下,我有一些处理程序并调用showNotification它。
Warning: React does not recognize the `showNotification` prop on a DOM element. If you intentionally want it to appear in the DOM as a custom attribute, spell it as lowercase `shownotification` instead. If you accidentally passed it from a parent component, remove it from the DOM element.
Run Code Online (Sandbox Code Playgroud)
在这种情况下,调用了handleClick,但没有出现通知,但控制台中没有错误
波纹管是我的项目的依赖项
"dependencies": {
"@material-ui/core": "1.5.1",
"@material-ui/icons": "3.0.1",
"apollo-boost": "^0.1.22",
"apollo-link-schema": "^1.1.2",
"graphql": "^14.0.2",
"graphql-tag": "^2.10.0",
"graphql-tag.macro": "^2.0.0",
"graphql-tools": "^4.0.3",
"graphql.macro": "^1.0.2",
"material-ui": "^0.20.2",
"ra-core": "^2.4.3",
"ra-data-graphql": "^2.4.3",
"react": "^16.3.2",
"react-admin": "^2.4.3",
"react-dom": "^16.3.3",
"react-material-ui-form-validator": "^2.0.2",
"react-scripts": "^2.1.1",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"seamless-immutable": "^7.1.4"
}
Run Code Online (Sandbox Code Playgroud)
如何在react-admin应用程序中显示通知?我错过了什么?
操作调度程序作为组件的属性传入,因此名称为mapDispatchToProps。因此,要调用动作调度程序,您可以使用this.props.showNotification('Hello, World')
| 归档时间: |
|
| 查看次数: |
4029 次 |
| 最近记录: |