摘要:
```csharp private void TestCopy() { string from = Application.streamingAssetsPath + "/Test/test.txt"; string to = Application.persistentDataPath + "/T 阅读全文
摘要:
1. 下载Android NDK https://developer.android.com/ndk/downloads?hl=zh-cn 2. 下载Pikafish源码 https://github.com/official-pikafish/Pikafish 3. 编译 在Pikafish的sr 阅读全文
摘要:
github地址: https://github.com/lxmghct/my-vue-components 组件介绍 props: value/v-model: 检索框的值, default: '' boxStyle: 检索框的样式, default: 'position: fixed; top: 阅读全文
摘要:
在mybatis中使用<foreach>标签时, 如果传入的列表为空, 则解析为sql语句时<foreach>标签所在位置会被解析为空, 最终的sql呈现为in ()或者in后面的内容为空, 从而导致sql语法错误。 网上找了很多种方法,如果用到foreach的地方比较多,用拦截器来处理可能会更好。 阅读全文
摘要:
测试代码 共准备了以下几个测试代码: 空白对照 public List<User> test0() { return new ArrayList<>(); } for循环遍历 public List<User> test1(@RequestBody List<Integer> ids) { List 阅读全文
摘要:
clipboard只有在安全域名下才可以访问(https、localhost), 而http域名下只能得到undefined。 例如现在想要实现点击"分享"按钮,将当前页面的url复制到剪贴板: const clipboard = navigator.clipboard if (clipboard) 阅读全文
摘要:
js颜色的单词名称字符串转为rgb颜色值 将js单词名称如red,green,blue转为rgb颜色值, 暂时没找到什么特别的方法。网上找到了颜色名称与rgb值的对应表,然后构造成map获取rgb值。 代码放在: https://github.com/lxmghct/my-vue-component 阅读全文
摘要:
问题描述 浏览器对于type="password"的输入框会自动填充密码,但有时出于安全或者其他原因,我们不希望浏览器记住并自动填充密码。通过网上查到的一些解决方案,可以总结出以下几种解决方案(主要用edge浏览器进行测试): 通过autocomplete="off"/autocomplete="n 阅读全文
摘要:
参考文档:https://zhuanlan.zhihu.com/p/390466860 问题描述 非el组件像原生的input、自定义组件等,无法触发el-form的rules校验,如下面的代码: <el-form ref="passwordForm" :model="passwordForm" : 阅读全文
摘要:
github地址: https://github.com/lxmghct/my-vue-components 组件介绍 props: value: 输入的ip地址, 类型为字符串, 格式为xx.xx.xx.xx, default: '' disabled: 是否禁用, 类型为布尔值, default 阅读全文