Riant
Riant
如题,也即是,除 required 之外的所有校验运行前都必须检查一下该项 rule 是否包含必填,以及值是否为空。 清除验证结果,是因为值为空时,本来就不存在是否验证通过的概念。 这样的话,可以解决不少问题,比如 #127 几年前从 jquery-validator 的源码中学到的,深以为该逻辑非常必要。
### Your Environment For now, we integrate react native with a native project with pod, so the podspec file is necessary for us. Thanks.
如题。谢谢。
I got warnings like below, it looks like all components from react-native had been imported by default, so can I set that as empty or just `view` and `text`, and...
**Do you want to request a *feature* or report a *bug*?** Request a *feature* I need to change the bookmark text, for now, I can get bookmark range from document...
最近微信开放了外部应用接入微信客服的功能,官网:https://work.weixin.qq.com/kf 参考文档 https://developers.weixin.qq.com/doc/oplatform/Mobile_App/APP_launch_wechat_customer_service.html ,Android SDK 需要大于等于 6.7.9,iOS 需要至少 1.9.2。 作者可以考虑升级 SDK 版本,同时支持一下相关 API 吗? 非常感谢。
如题: ``` FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':app:mergeDexDebug'. > A failure occurred while executing com.android.build.gradle.internal.tasks.Workers$ActionFacade > com.android.builder.dexing.DexArchiveMergerException: Error while merging dex...
### What problem does this feature solve? 如题,这样的话,就不至于在旋转到侧面或者背面的时候全是黑色阴影。 谢谢。 ### What does the proposed API look like? 暂无
https://github.com/lovebing/react-native-baidu-map/blob/12857eead720412d198856cabc5e5b43e974e070/android/src/main/java/org/lovebing/reactnative/baidumap/BaiduMapPackage.java#L13
很喜欢 Mustcache 的语法,但是他的弱逻辑导致each,if 之类的处理逻辑变得很麻烦;几经对比决定用 Juicer :) , 提一个建议,能否简化一下 {@each list as item,index} 这个语法,将 item, index 变为默认的内置变量,就不用在模板中每次都带上他们了,或者干脆可以这样使用: ``` {@each list} ${.prop} // 用点号 表示取当前item属性 ${$I} //$I 表示内置的当前索引 {@/each} ``` ----- 会不会更好用啊...