eatmoreduck
eatmoreduck
> @matthewhughes-uw, this is as expected: `go 1.21` was a development version of the language, for which there is no downloadable release (because it is not a specific version). The...
我也遇到了类似的问题,请问表单获取值的方式只能自己手动获取吗
昨天我也遇到这个问题,今天找到方法了 方法一: 高级表单配置表单具体项的表单标识 比如表单字段A 配置标识testA 高级表单配置onChange事件,新建方法并绑定 onChangeForm(value){ console.log(value) } 保存并渲染之后,再在input里输入,会自动执行绑定的onChange事件 里面的value 对象就是绑定的整个表单的所有信息,控制台能看到 {testA:'123'} 就能拿到具体的信息 方法二: 这种比较蠢,先给表单一个唯一标识,直接在需要使用数据的地方用document.getElementById('testA').value 因为没有引jQuery,所以直接用document的api 不知道还有没有更好的办法
已提pr https://github.com/fuzhengwei/itstack-demo-netty/pull/28
> Sorry to bother you again, i met this issue again. I found that when two screens are arranged horizontally, there are no issues, but when the two screens are...