我有一个Gravity Form,我需要根据与前一个字段中下拉选项的匹配,使用MySQL数据库表wp_doordata
中的信息填充一个字段。
我从下拉菜单中选择值" CRP10" 。我需要查询MySQL数据库表并选择与值" CRP10" 的选择匹配的字段door_data
,并填写"door_data"
中的字段 componentDidMount() {
this.keyboardShowListener = Keyboard.addListener('keyboardDidShow', this.keyboardDidShow);
this.keyboardHidenListener = Keyboard.addListener('keyboardDidHide', this.keyboardDidHide);
}
componentWillUnmount() {
this.keyboardShowListener && this.keyboardShowListener.remove();
this.keyboardHidenListener && this.keyboardHidenListener.remove();
}
重力形式。
我可以在PHP中执行此操作,但我不熟悉Wordpress / Gravity Forms,并希望得到任何帮助。