如何在响应中监听按钮单击事件?

时间:2019-11-04 02:10:27

标签: javascript reactjs forms formio

我正在使用以下程序包在react中动态生成表单:

https://www.npmjs.com/package/react-formio

我找到了一个示例,其中on button click, an event is listening https://jsfiddle.net/Formio/obhgrrd8/?utm_source=website&utm_medium=embed&utm_campaign=obhgrrd8

我想使用上述软件包在react中做同样的事情 这是我的代码

https://codesandbox.io/s/lucid-austin-vjdrj

我有三个要听的按钮button click event

ReactDOM.render(
  <Form src="https://wzddkgsfhfvtlmv.form.io/parentform" />,

  // <Form src="https://peb3z.sse.codesandbox.io/abc" onSubmit={(i)=>{console.log(i)}} />,
  rootElement
);

2 个答案:

答案 0 :(得分:1)

在这种情况下,您需要从按钮模式中选择一个事件作为操作。

enter image description here

并指定一个事件名称(例如 eventFromButton1 )。

enter image description here

然后在<Form />组件中添加onCustomEvent属性。

<Form
        form={{
        onCustomEvent={customEvent => {
          console.log(customEvent);
        }}
 />

onCustomEvent函数将接收具有以下结构的prop对象

{
 type: "eventFromButton1",
 component: {},
 data: {}, 
 event: MouseEvent
}

您可以使用type属性来确定哪个按钮触发了更新,并可以使用data属性来获取表单数据。

尝试使用下面添加的按钮修改表单数据(我在react-formio中没有关于这些自定义的好的文档)

使用submission数据作为反应state

更改onCustomEvent上的状态,然后重新呈现表单。

    import React, { useState } from "react";
    import { Form } from "react-formio";

    function CustomForm() {
      const [submission, setSubmission] = useState({});
  return (
    <div className="App">
      <Form
        form={{
          components: [
            {
              label: "First Name",
              validate: { required: true, minLength: 3 },
              key: "firstName",
              type: "textfield",
              input: true
            },
            {
              type: "textfield",
              key: "lastName",
              label: "Last Name",
              placeholder: "Enter your last name",
              input: true
            },
            {
              label: "Pupulate Nast Name",
              action: "event",
              showValidations: false,
              key: "submit1",
              type: "button",
              input: true,
              event: "someEvent"
            },
            {
              type: "button",
              label: "Submit",
              key: "submit",
              disableOnInvalid: true,
              input: true
            }
          ]
        }}
        submission={{ data: submission }}
        onSubmit={a => {
          console.log(a);
        }}
        onSubmitDone={a => {
          console.log(a);
        }}
        onCustomEvent={customEvent => {
          console.log(customEvent);
          setSubmission({ ...customEvent.data, lastName: "Laaast Name" });
        }}
      />
    </div>
  );
 }

export default CustomForm;

尽管有一些小故障。

您会在UI中看到闪烁。

验证错误将消失(尽管看起来像“提交”按钮仍被禁用)

尝试这个Sandbox

您还可以尝试使用文档中提到的redux。

答案 1 :(得分:0)

最后反应生成javascript代码。因此,您也可以在react中使用类似于javascript的事件。

例如,

const submit = ()=>{
//your work goes here
}

return (
<div onClick={submit}> // or onClick={ ()=>submit()}

</div>
)