9
我已經試過:如何在酶中產生模糊或onBlur事件?
input.simulate('blur');
和
input.simulate('onBlur');
這些工作都不是。這是甚至可用在酶(我使用版本2.4.1)。
我已經試過:如何在酶中產生模糊或onBlur事件?
input.simulate('blur');
和
input.simulate('onBlur');
這些工作都不是。這是甚至可用在酶(我使用版本2.4.1)。
input.simulate('focus')
,input.simulate('change')
和input.simulate('blur')
應該工作。檢查您的輸入是否實際上是一個聲明爲_wrapper.find('input')
並存在的節點。其次,還有一個類似於這個問題的問題:Enzyme - How to access and set <input> value? 最後如果你check the source code的ReactWrapper component那麼你會發現它使用all events that React can recognize。所以錯誤在你的代碼中。
我用'模擬('模糊');'之前,它工作得很好。 – Chris