会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
码弄
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
下一页
2020年5月16日
android studio中运行 INSTALL_FAILED-NO_MATCHING_ABIS:Failed to extract native libraries,res=-113
摘要: defaultConfig{ ...} splits { abi { enable true reset() include 'x86', 'armeabi-v7a','x86_64' universalApk true }}
阅读全文
posted @ 2020-05-16 15:05 码弄
阅读(1014)
评论(0)
推荐(0)
2019年12月10日
Vue中使用mqtt
摘要: 官方文档:https://www.npmjs.com/package/mqtt 使用: let mqtt = require('mqtt'); let client = {}; //开启mqtt链接 client = mqtt.connect('ws://192.168.0.0/mqtt', { p
阅读全文
posted @ 2019-12-10 18:10 码弄
阅读(10656)
评论(0)
推荐(0)
2019年11月2日
数组对象去重复
摘要: //数组对象去重复deteleObject(obj) { var uniques = []; var stringify = {}; for (var i = 0; i < obj.length; i++) { var keys = Object.keys(obj[i]); keys.sort(fu
阅读全文
posted @ 2019-11-02 16:48 码弄
阅读(844)
评论(0)
推荐(0)
2019年8月29日
数组对象按照名字首字母进行排序
摘要: 需要使用pinyin.js得到每个名字的首字母
阅读全文
posted @ 2019-08-29 15:46 码弄
阅读(1744)
评论(0)
推荐(0)
js给数组对象添加一个属性
摘要: this.data.forEach((item,index)=>{ needData.push( Object.assign({},item, {'addAttr':'addAttrContent'}) ) })
阅读全文
posted @ 2019-08-29 15:18 码弄
阅读(14634)
评论(0)
推荐(1)
js给元素添加或者删除class
摘要: 在html5中增加了classList document.getElementById("button").classList.add(“active”); document.getElementById("button").classList.remove("active");
阅读全文
posted @ 2019-08-29 10:22 码弄
阅读(7736)
评论(0)
推荐(0)
2019年8月26日
git拉取其他分支并且合并代码
摘要: 1.先提交一波 为后续切分支准备 (xxx1为自己的分支 xxx2为想要拉取的分支) git add . git commit -m 'yyy' git push origin xxx1 2.然后git切换到你所要拉取的分支xxx2 拉取该分支代码 git checkout xxx2 git pul
阅读全文
posted @ 2019-08-26 10:36 码弄
阅读(20677)
评论(0)
推荐(2)
2019年8月17日
vue中类似联系人列表,a-z排序 外加多选el-checked使用
摘要: <template> <div v-show="showEdit" style="display:flex;flex-direction:column;position: absolute;right: 30px;z-index: 3000;border-radius: 4px;border: 1p
阅读全文
posted @ 2019-08-17 16:22 码弄
阅读(1125)
评论(0)
推荐(0)
2019年7月24日
sublime vscode的所有插件(前端)
摘要: "1337 Color Scheme", "AdvancedNewFile", "AutoFileName", "Babel", "DocBlockr", "HTML-CSS-JS Prettify", "JavaScript Completions", "jQuery", "JsFormat",
阅读全文
posted @ 2019-07-24 09:21 码弄
阅读(593)
评论(0)
推荐(0)
2019年7月23日
element中的标签tab样式修改
摘要: .tabContainer { width: 1200px; height: auto; margin: 0 auto; background: #D4E3FB; position: relative; } .tabContainer .el-tabs--border-card{ border: n
阅读全文
posted @ 2019-07-23 16:50 码弄
阅读(17649)
评论(0)
推荐(0)
上一页
1
2
3
4
下一页
公告
点击右上角即可分享