移动开发 vue---axios的封装
//新建一个文件夹network---request.js import axios from ‘axios‘ // config接口参数,函数1(成功后的回调将数据返回给引用者),函数2(将错误返回给引用者) export function request(config, success,……
移动开发 警惕!部分iPhone 6S无法开机,Apple已推出了维修计划
苹果已经发布了一项新维修计划的通知,以解决导致某些iPhone 6S和6S Plus手机无法开机的问题。该程序页面说:“苹果公司确定某些iPhone 6s和iPhone 6s Plus设备可能由于组件故障而无法开机……
移动开发 ---Ubuntu 连接手机tethering
http://darwinpedia.blogspot.com/2017/09/ubuntu-server-1604-connection-via-usb.html Android USB tethering enable/disable: Settings menu-Wireless and Network-More-Tethering portable hotspot and enable USB tethering /etc/network/interfaces: au……
移动开发 axios五种提交方法
template div class="home" /div/templatescript // @ is an alias to /src /* get,post,put,patch,delete get:获取数据 post:新建,提交数据(表单提交,文件上传) put:更新数据(所有数据推送到后端) patch:更……
移动开发 WhatsApp远程执行漏洞,可窃取安卓手机文件及聊天记录
一幅图片值得一千个单词,但是一个GIF值得一千幅图片。如今,短循环剪辑,GIF随处可见,在社交媒体上,在留言板上,在聊天中,可以帮助用户完美表达自己的情绪,让人发笑并重拾……
移动开发 解决360AndroidOS物联网卡缺少APN接入点连不上网
1. 打开 设置 2. 打开 双卡和网络 3. 打开 中国卫通 4. 打开 接入点名称(APN) 5. 打开 新建APN 6. 填写 名称 和 APN, 填写内容都为大写的字母 CMIOTQAXY 7. 点击 保存 8. 回到 接入点名称(APN) 选项……
移动开发 Vue--axios基本使用
//安装axiosnpminstallaxios--save //导入import axios from ‘axios‘ axios({ url:‘接口地址‘,//可拼接 ?参数参数2 method:‘get‘, params:{ 参数 } }).then(res={ console.log(res); }) //axios发送并发请求 axios.all([a……
移动开发 springboot-SpringApplication
1. 概述 import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication // 1 public class MVCApplication { public static void main (String[] args) { SpringAppl……
移动开发 移动1099存储过程
移动1099存储过程 declare @phone_id as int declare @phone as varchar ( 50 ) declare @province as varchar ( 50 ) --号码归属省 declare @price as decimal ( 10 , 2 ) declare @cityareacode as varchar ( 50 ) --号码归属市 declare @c……
移动开发 VUE开发公众号IOS9白屏问题
备注: IOS9白屏问题出现在内核解析,在commitJS中回调继续调用接口时,ES6语法解析错误导致白屏。 通过安装npm install babel-polyfill,npm install es6-promise对代码再次解析。 1.npm安装 npm instal……