- 博客(14)
- 收藏
- 关注
转载 TypeError: this.getOptions is not a function
原因:less-loader安装的版本过高解决方案:1.npm uninstall less-loader2.npm install less-loader@6.0.0
2021-12-10 09:21:37 131
原创 uniapp h5支付宝支付
请求后台接口,后台返回form表单,form表单插入页面,直接提交。可写一个定时器请求是否支付成功接口。再次回到页面,数据刷新,可存储字段,拿存储字段请求是否成功接口。document.querySelector('body').innerHTML = res.data.data;//调用submit 方法 document.forms[0].submit()...
2021-11-16 19:11:20 1296 1
转载 react-native-http-cache 使用
一:安装下载:npm install react-native-http-cache --save关联:react-native link react-native-http-cache二:使用在关联成功之后,ios这边会自动添加依赖 libRCTHttpCache.a首先在使用的类文件中引入import * as CacheManager from 'react-nati...
2019-11-12 17:14:13 375
原创 push() pop() unshift() shift()
var arr = [1,2,3,4]push()arr.push(5)console.log(arr) //1 2 3 4 5unshift()arr.unshift(0)console.log(arr) // 0 1 2 3 4pop()arr.pop()console.log(arr) // 1 2 3shift()arr.shuift()co...
2018-12-12 17:32:03 205
转载 ajax参数
1.url:要求为String类型的参数,(默认为当前页地址)发送请求的地址。2.type:要求为String类型的参数,请求方式(post或get)默认为get。注意其他http请求方法,例如put和delete也可以使用,但仅部分浏览器支持。3.timeout:要求为Number类型的参数,设置请求超时时间(毫秒)。此设置将覆盖$.ajaxSetup()方法的全局设置。...
2018-12-10 17:29:04 132
转载 Jquery 使用Ajax获取后台返回的Json数据后,页面处理
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head> &l
2018-12-10 14:54:20 868 3
原创 回调函数callback
回调函数:A函数和B函数,A函数作为参数传给B函数,这时A函数就是回调函数。eg:function A(){ console.log('我是函数A')}function B(callback){ console.log('我是函数B') callback()}B(A)执行完B函数,再执行A打印内容:我是函数B ...
2018-12-07 14:41:21 147
原创 for循环九九乘法表
for循环九九乘法表 var html='' for(var i=1;i<=9;i++){ for(var k=1;k<=i;k++){ html+='<span styl...
2018-12-06 15:10:27 720
原创 递归
调用自身的循环,撞到南墙后回头,依次往返。var data = [{ "id": "1", "name": "美食", "items": [{ "id": "1.1", "
2018-12-05 14:39:36 112
转载 JSON.parse()和JSON.stringify()
JSON.parse() 字符串解析成json对象var data ={'name':'小明','age':'12','sex':'女'}此时data.name是undefinedJSON.parse(data)data ={name:'小明',age:'12',sex:'女'}data.name => '小明'JSON.stringify() 对象解析成字符串...
2018-11-29 17:42:16 123
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人