我希望根据另一个字段的值显示/隐藏表单字段
我可以通过观察员观察事件
rules: "required|string|between:1,100",
observers: [
{
key: "value", // can be any prop
call: ({ form, field }) => {
//value is X hide the other field
form.$("other-field") // ... hide this
}
....
我是否需要设置一些外部状态来执行此操作,或者是否有通过mobx-form的方法?
答案 0 :(得分:1)
您可以将字段类型设置为隐藏字段
form.$("other-field").set("type", "hidden");