- 博客(16)
- 收藏
- 关注
原创 ionic 问题记录
1.ionic ios 端长按文字复制时,英文改为中文xcode,.plist文件,修改参数localization native development region的值改成China
2020-07-20 22:20:57
313
原创 antd pro问题记录
报错:devScripts.js:5836 Warning: Please use require("history").createHashHistory instead of require("history/createHashHistory"). Support for the latter will be removed in the next major release.解决:node_modules=>dva包=>lib文件夹=>index.js// var _cre.
2020-07-09 00:28:19
1072
原创 sourcetree连接gitee码云仓库记录
1.生成/添加SSH公钥ls -al ~/.ssh //查看本地是否已经存在SSH Key(出现id_rsa.pub 和 id_dsa.pub两个文件则说明已存在,跳过下一步) ssh-keygen -t rsa -C "xxxxx@xxxxx.com" //生成SSH Key(按照提示完成三次回车,即可生成 ssh key) pbcopy < ~/.ssh/id_rsa.pub //复制SSH Key2.复制生成后的 ssh key,通过仓库主页 「管理」->「部署公钥管理」
2020-05-25 12:15:31
1933
原创 ERROR: Missing source image for "splash" (sources: resources/android/splash.png, resources/android/s
ionic生成splash报错(ionic cordova resources --splash)ERROR: Missing source image for “splash” (sources: resources/android/splash.png, resources/android/splash.jpg, resources/android/splash.jpeg, resource...
2020-04-08 00:28:38
712
原创 那些我用到过的js方法
那些我用到过的js方法1.阿拉伯数字转中文数字2.得到数组arr1与两个数组的并集相减后的结果1.阿拉伯数字转中文数字/** * 阿拉伯数字转中文数字, * 如果传入数字时则最多处理到21位,超过21位js会自动将数字表示成科学计数法,导致精度丢失和处理出错 * 传入数字字符串则没有限制 * @param {number|string} digit */export const t...
2019-12-14 22:35:57
249
原创 css transform rotate 不影响子元素
直接获取不到rotate角度console.log($("#mapid" + element).parent("div").css("transform"));输出为解决方法:var nowDeg=0;if($("#mapid" + element).parent("div").css("transform")!='none'){ var values = $("#mapid" ...
2019-12-12 01:15:16
3159
原创 iview admin + bootstrap-table + tableexport 实现前端导出excel
1.终端执行npm install bootstrap@3 --save--devnpm install bootstrap-table@1.11.1 --save--devnpm install --save popper.jsnpm install tableexport.jquery.plugin --save--devmain.js 添加以下代码import 'bootst...
2019-12-10 19:50:52
396
原创 iview admin中引入jquery
报错:Uncaught Error: Bootstrap’s JavaScript requires jQuery报错原因:没有正确引入jquery解决:1.控制台执行npm install jquery --save--dev2.main.jsimport $ from 'jquery'3.vue.config.jsmodule.exports={……}中加入代码con...
2019-12-10 00:41:11
823
原创 记录css方面的问题
flex为1的时候,超过宽度打省略号flex:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;min-width:0;
2019-12-06 00:15:19
155
原创 ionic4 禁止启动页 splashscreen
为什么要隐藏由于ui还没准备好启动页图片,于是暂时先不显示启动页,将默认的启动页隐藏找到参考文档参考文档地址总结:禁用安卓的splashscreen只需在config.xml添加<preference name="SplashScreenDelay" value="0"/>禁用ios的splashscreen还需在config.xml添加<preference...
2019-12-04 16:15:26
834
原创 ionic4打包时遇到的种种问题
接触ionic的项目好几个月了,但是在打包时还会遇到各种莫名其妙的错误,今天起决定把遇到的错误都好好记录一下。Something went wrong installing the “sharp” module报错截图(在我执行ionic cordova platform add ios命令后报错):大概意思是我的sharp版本不对,百度了一通后终于找到执行以下命令可以正确安装上然后终...
2019-12-03 19:22:08
2174
原创 记录使用iview、iview-admin遇到的那些坑
今天又改了下之前那个iviewadmin的项目,有时候一个小问题就百度老半天,在这里记录下我遇到的那些坑。select组件select组件的绑定这种情况下select的值绑定不上去(一个是number类型的一个是string类型),要统一,当时光顾着看控制台打印出来的数字,明明都一样就怎么也绑定不上,郁闷了好久。select组件遇上form表单给form表单加了:rules=“rul...
2019-12-03 01:04:55
2271
1
原创 Unsupported swift version
今天打包ios时报错:打开报错的文件,大多数错误fix,这个url.characters.count把characters.删掉,保存后重新run,编译通过
2019-11-29 22:53:05
693
原创 gyp: No Xcode or CLT version detected!
我的版本信息node :v12.4.0今天把node升级到12.4.0后,删除modules重新npm时居然报错惹(不过也许不是升级的原因):No receipt for 'com.apple.pkg.CLTools_Executables' found at '/'.No receipt for 'com.apple.pkg.DeveloperToolsCLILeo' found at...
2019-11-29 00:44:29
826
原创 在ionic4中使用 NG-ZORRO-MOBILE
NG-ZORRO-MOBILE官网我使用的是用npm引入的方式1.安装组件2.引入模块在 app.modules.ts 中,全局引入 ng-zorro-antd-mobile。3.引入样式在 angular.json 中,全局引入 ng-zorro-antd-mobile样式。4.在tab1.page.html使用NoticeBar组件此时控制台报错:core.js:91...
2019-11-27 11:12:56
934
原创 ionic4自定义底部Tab五个按钮的样式(按钮凸起效果)
ionic4自定义底部Tab五个按钮的样式效果图实现代码效果图实现代码tabs.page.html代码.<ion-tabs (ionTabsDidChange)="tabchange($event)"> <ion-tab-bar slot="bottom" translucent="true"> <ion-tab-button tab="t...
2019-11-26 15:26:30
1259
1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人