首页 > 移动平台
apply,call,bind
apply,call apply和call都可以改变this的指向 apply和call的使用方法 bind 比我的更详细https://www.cnblogs.com/moqiutao/p/7371988.html ...
分类:移动平台   时间:2019-08-11 14:15:40    收藏:0  评论:0  赞:0  阅读:106
Android自动化测试探索(四)uiautomator2简介和使用
uiautomator2简介 项目Git地址: https://github.com/openatx/uiautomator2 安装 #1. 安装 uiautomator2 使用pip进行安装, 注意因为uiaotumator2还在开发中需要加上--pre来安装最新的版本 也可以使用源码来进行安装 ...
分类:移动平台   时间:2019-08-11 14:00:36    收藏:0  评论:0  赞:0  阅读:193
vue2.0做移动端开发用到的相关插件和经验总结
:一个CSS值转REM的VSCode插件; :移动端弹性布局适配解决方案; :移动端相关点击,滑动,拖动,多点触控等事件封装; :适用于vue项目中表单验证插件; :可能是目前最好用的移动端滚动插件; :解决移动端click 300ms延迟 :手机前端开发调试利器 webpack之proxyTabl ...
分类:移动平台   时间:2019-08-11 13:55:03    收藏:0  评论:0  赞:0  阅读:119
Android 隐藏顶部菜单栏
Android 隐藏状态栏 在Activity中: getWindow().addFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN); 在fragment中getActivity().getWindow().addFlags(WindowManager ...
分类:移动平台   时间:2019-08-11 13:51:08    收藏:0  评论:0  赞:0  阅读:382
Tensorflow tf.app.flags 的使用
在执行main函数之前首先进行flags的解析,也就是说TensorFlow通过设置flags来传递tf.app.run()所需要的参数,我们可以直接在程序运行前初始化flags,也可以在运行程序的时候设置命令行参数来达到传参的目的。 下面是一个小demo flags.DEFINE_string 这 ...
分类:移动平台   时间:2019-08-11 12:08:09    收藏:0  评论:0  赞:0  阅读:90
vuebase--8._axios
_axios: vue >axios(网络请求) Axios是一个基于promise的HTTP库,可以用在浏览器和node.js中。 安装 npm install axios --save 引入: import axios from 'axios' Vue.prototype.$axios=Axio ...
分类:移动平台   时间:2019-08-11 11:19:17    收藏:0  评论:0  赞:0  阅读:97
xamarin.android SurfaceView 实现 游戏 触摸摇杆
先上图 页面 代码 ...
分类:移动平台   时间:2019-08-11 11:15:31    收藏:0  评论:0  赞:0  阅读:155
vuebase--9._axios post请求
1.axios-post请求 <template lang="html"> <div class="hello"> HelloWorld! </div></template> <script> import qs from "qs"; // 解决参数格式的转码问题 ?name=xxxxx&age=1 ...
分类:移动平台   时间:2019-08-11 10:48:45    收藏:0  评论:0  赞:0  阅读:91
web 视频播放器clappr 相关
https://github.com/tjenkinson/clappr-thumbnails-plugin/ https://github.com/andrefilimono/clappr-flvjs-playback https://www.helloweba.net/javascript/57... ...
分类:移动平台   时间:2019-08-11 10:44:58    收藏:0  评论:0  赞:0  阅读:122
failed to find romfile "vgabios-stdvga.bin"
问题:failed to find romfile "vgabios-stdvga.bin" 解决: apt-get install vgabios ln -s /usr/share/vgabios/vgabios.stdvga.bin /usr/share/qemu/vgabios-stdvga. ...
分类:移动平台   时间:2019-08-11 10:11:06    收藏:0  评论:0  赞:0  阅读:216
vuebase-10_Axios配置
1.全局配置 axios.defaults.baseURL = 'https://api.example.com'; axios.defaults.headers.common['Authorization'] = AUTH_TOKEN; axios.defaults.headers.post['C ...
分类:移动平台   时间:2019-08-11 10:03:41    收藏:0  评论:0  赞:0  阅读:98
android -------- DES加密解密算法
DES全称为Data Encryption Standard,即数据加密标准,是一种使用密钥加密的块算法,1977年被美国联邦政府的国家标准局确定为联邦资料处理标准(FIPS),并授权在非密级政府通信中使用,随后该算法在国际上广泛流传开来。需要注意的是,在某些文献中,作为算法的DES称为数据加密算法 ...
分类:移动平台   时间:2019-08-11 01:49:15    收藏:0  评论:0  赞:0  阅读:116
【windows】常见的系统环境变量,如%appdata%表示什么意思
https://blog.csdn.net/catshitone/article/details/70238163 【windows】常见的系统环境变量,如%appdata%表示什么意思 2017年04月19日 11:11:52 JimCarter 阅读数 18342更多 个人分类: 系统 【win ...
分类:移动平台   时间:2019-08-11 01:31:47    收藏:0  评论:0  赞:0  阅读:139
intellij idea快速通过mapper跳转到xml文件
安装完之后重启idea即可! ...
分类:移动平台   时间:2019-08-11 01:17:11    收藏:0  评论:0  赞:0  阅读:528
android学习笔记——View(一)
参考: 《Android进阶之光》《Android开发艺术探索》 https://www.jianshu.com/p/06ff0dfeed39 View 的位置参数 View滑动 layout() 方法 View 在绘制的时候会调用onLayout() 方法设置i显示的位置,所以我们也可以通过 la ...
分类:移动平台   时间:2019-08-11 00:59:50    收藏:0  评论:0  赞:0  阅读:127
泡泡一分钟:GEN-SLAM - Generative Modeling for Monocular Simultaneous Localization and Mapping
张宁 GEN-SLAM - Generative Modeling for Monocular Simultaneous Localization and Mappinghttps://arxiv.org/abs/1902.02086 Punarjay Chakravarty, Praveen Na ...
分类:移动平台   时间:2019-08-11 00:40:34    收藏:0  评论:0  赞:0  阅读:101
axios异步提交表单数据的不同形式
踩坑Axios提交form表单几种格式 前后端分离的开发前后端, 前端使用的vue,后端的安全模块使用的SpringSecurity,使用postman测试后端的权限接口时发现都正常,但是使用vue+axios发送异步的请求后端一直获取不出axios提交的form表单的数据,爬坑两个半钟头找到了答案 ...
分类:移动平台   时间:2019-08-11 00:12:19    收藏:0  评论:0  赞:0  阅读:126
Android Studio 快捷键
Alt + Shift + Ins = 构造、getter、setter、重写等函数入口 Alt + O = 重写函数入口 Alt + Enter = 导包、强制类型转换之类 Ctrl + Q = 查询类、方法的描述、作用、参数及返回值 Ctrl + P = 查询函数参数列表 Ctrl + Y = ...
分类:移动平台   时间:2019-08-10 22:15:54    收藏:0  评论:0  赞:0  阅读:110
华为鸿蒙OS发布!方舟支持混合编译,终将可替换安卓?
有关于鸿蒙的消息之前也有说过,就在昨天下午,华为举行了2019开发大会,正式推出了鸿蒙os系统(Harmony)。其相关负责人表示,也是基于微软内核的全场景分布式OS ...
分类:移动平台   时间:2019-08-10 20:45:40    收藏:0  评论:0  赞:0  阅读:112
jq下拉列表的左右移动
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <script src="../../js/jquery-3.3.1.min.js"></script> <style> #leftName , #btn,#ri... ...
分类:移动平台   时间:2019-08-10 20:08:17    收藏:0  评论:0  赞:0  阅读:135
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!