Wei Xiaopeng
Wei Xiaopeng
Looking forward to this 👍
Any updates on it?
I also need such a feature: creating index through struct tag
我勒个去,搞了半天,代码都写差不多了,结果 付款码 支付方式不支持,一口鲜血喷涌而出~~~ 😂 怪我怪我,我以为支持付款码嘞
I have a use case that also requires “dynamic dependency injection.” I’m building a Spring-like framework on top of the Fiber web framework. I wrapped Fiber’s API-request definition and introduced...
怎么样?升级了没有?我也也到同样的问题 我使用 vue3.4的属性快捷绑定语法 `:locale :date-locale` 会报错,变量未使用错误,但是我用 vue-tsc2.x 版本编译类型就没有问题。
Encountered the same issue
Fix this issue: https://github.com/spring-projects/spring-statemachine/issues/1156
I also need the `listeners.onReset` feature. Generally, for search forms, if a user wants to quickly reset a filled form, `form.reset()` is very useful. However, once the search form's values...
很多时候我们会直接将后端返回的 api 数据数组直接塞到 Select 组件的 options,通过 fieldNames 属性控制 label/value 分别用哪个对象属性显示,很自然的 option 就会有冗余属性,因为不可能每次都精确控制到让 option 只有 label/value 字段,而且很多时候我们也会实现自定义的搜索过滤,过滤的字段不仅仅是 label/value 等,可能还有自定义的字段,比如:labelPinyin 之类的,同时做到中文和拼音的过滤支持,难免会有需求在 option 上冗余其他字段。 虽然自定义 renderOption 是个法子,但是太麻烦,本来简单的内容不需要自定义的,就因为这个必须要自定义 renderOption 就会点不合适了