码迷,mamicode.com
首页 >  
搜索关键字:console page status    ( 39775个结果
Mac下配置alias,zsh终端命令别名
经常使用命令行进行一些操作,一些常用的命令一遍遍的敲比较浪费时间,想通过别名的方式简化操作。 1、就是编辑~/.bash_profile,比如添加PS:=两边没有空格: alias st="git status" alias pull='git pull' alias push='git push' ...
分类:系统相关   时间:2021-06-28 20:41:29    阅读次数:0
微信小程序中点击选项卡路由跳转问题
点击选项卡时,点击事件如下: wx.navigateTo({ url: '../device/device' }) 微信小程序报错:navigateTo:fail can not navigateTo a tabbar page,解决方法如下: wx.switchTab({ url: '../dev ...
分类:微信   时间:2021-06-28 20:38:23    阅读次数:0
微信小程序中如何识别银行卡和身份证
识别银行卡云函数card2/index.js: const cloud = require('wx-server-sdk') cloud.init({ env: cloud.DYNAMIC_CURRENT_ENV, }) exports.main = async (event, context) = ...
分类:微信   时间:2021-06-28 20:21:21    阅读次数:0
ant design of vue a-tree组件子节点不完全勾选获取父节点的值
onBusinessSelectChange(selectedKeys, info) { // console.log('selectedKeys changed: ', selectedKeys); // console.log('info changed: ', info); // 已勾选子节点 ...
分类:其他好文   时间:2021-06-28 20:17:32    阅读次数:0
GO的Rand随机数不一样
package main import ( "fmt" "math/rand" "sync" "time" ) var wg sync.WaitGroup func f1(i int) { wg.Done() fmt.Println(i) } func main() { rand.Seed(time ...
分类:其他好文   时间:2021-06-28 19:53:07    阅读次数:0
结构选择
选择结构 if eles 如果条件成立就进入到分支里面执行相应代码,如果不成立,则不会进入 if(条件){ 执行相应代码; }else{ 执行相应代码; } 多分支 if else if if{ }else if{ }else if{ }else{ ? console.log('请输入:');let ...
分类:其他好文   时间:2021-06-28 19:49:27    阅读次数:0
数组的常用方法总结
一、基本使用 1、数组的创建 (1) 通过[] let arr1 = [1, 2, 3, 4, 5] (2) 通过创建构造函数 Array的实例 let arr2 = new Array(1, 2, 3, 4, 5) console.log(arr2) // [1, 2, 3, 4, 5] 需要注意 ...
分类:编程语言   时间:2021-06-28 19:11:58    阅读次数:0
应用 |前端限制仅允许指定ip访问页面
封装方法 import axios from 'axios' const allowIP = ['119.133.5.19']; //允许访问 async function getIp() { const res=await axios.get('https://api.ipify.org/')// ...
分类:其他好文   时间:2021-06-28 18:55:02    阅读次数:0
async await Promise多个异步代码互相调用示例
function a1() { return new Promise(o => { console.log("a1") o('a1_1') }) } async function a2() { const _a2 = await a1() console.log(_a2); console.log( ...
分类:其他好文   时间:2021-06-28 17:45:59    阅读次数:0
微信h5支付
export function chooseWXPay(params: wx.ChooseWXPayConfig) { return new Promise<{ status: 'success' | 'error' | 'cancel'; result?: string; message?: st ...
分类:微信   时间:2021-06-28 17:44:33    阅读次数:0
39775条   上一页 1 ... 3 4 5 6 7 ... 3978 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!