gpt4 book ai didi

javascript - 如何在带有 react-alert 的组件中显示消息?

转载 作者:行者123 更新时间:2023-11-29 15:07:37 25 4
gpt4 key购买 nike

我正在使用 reactjs。我想在带有 react-alert 组件的组件中显示警报。 https://www.npmjs.com/package/react-alert我按照给定的方式包装 index.js 文件。

但是当我尝试在表单中使用 alert.show ("sdfsdfsdfsf") 时,出现以下错误。

我是否在表单中显示消息?

索引.js

import React from 'react';
import ReactDOM from 'react-dom';
import App from './App/App';

import { transitions, positions, Provider as AlertProvider } from 'react-alert'
import AlertTemplate from 'react-alert-template-basic'

import { Provider } from 'react-redux';

const options = {
// you can also just use 'bottom center'
position: positions.BOTTOM_CENTER,
timeout: 5000,
offset: '30px',
// you can also just use 'scale'
transition: transitions.SCALE
};
ReactDOM.render(
<Provider store={store}>
<AlertProvider template={AlertTemplate} {...options}>
<App/>
</AlertProvider>
</Provider>,
document.getElementById('root'));

我的表格.js

import { useAlert } from "react-alert";
const alert = useAlert();
class myForm extends Component {
constructor(props) {
super(props);
.........

render() {
return(
<div> alert.show("Alert test") </div>
)
}

最佳答案

除非用大括号括起来,否则不能在 render 方法中调用函数/方法。在 jsx 中需要花括号来让解析器知道你想要运行一些 javascript 代码。

尝试以下操作:

render() {
return (
<div>{alert.show("Alert test")}</div>
);
}

当使用 onClick 处理程序时,npm 上的 react-alert 包也有一个很好的例子 https://www.npmjs.com/package/react-alert

const App = () => {
const alert = useAlert()

return (
<button
onClick={() => {
alert.show('Oh look, an alert!')
}}
>
Show Alert
</button>
)
}

export default App

关于javascript - 如何在带有 react-alert 的组件中显示消息?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58401490/

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