技术概述 做什么 这个技术是用于前后端数据交互,通过post,get等请求传送数据,以及得到响应 学习该技术的原因 我去面试的时候也有问到这个问题hh,我的回答是 axios相对于原生的ajax封装很多便捷的API,我们使用起来更加方便 axios返回的一个promise,避免了回调地狱,便于开发。 ...
分类:
移动开发 时间:
2021-06-28 20:26:38
阅读次数:
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
//gcInterface为控件名称 if (gcInterface.InvokeRequired) { gcInterface.BeginInvoke((MethodInvoker)delegate { dtConfig.Rows[index]["count"] = count; dtConfig ...
分类:
编程语言 时间:
2021-06-28 19:57:18
阅读次数:
0
封装方法 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
1 // In the renderer process. 2 3 import { desktopCapturer } from 'electron'; 4 import { screen } from '@electron/remote'; 5 6 export async function c ...
分类:
其他好文 时间:
2021-06-28 18:51:50
阅读次数:
0
本文介绍一种点击空白处使控件隐藏的实现方法。 问题描述 考虑如下场景,在白板类软件中,点击按钮弹出一个View,希望在点击空白处直接隐藏掉View,同时可以直接书写,如下图: 实现该需求,可以通过View间通信解决,但这样会增加代码耦合且使逻辑显得复杂。 本文通过派生UserControl,将处理逻 ...
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
const db = uniCloud.database(); const collection=db.collection('sblist'); //链表查 var res=await collection.aggregate() .lookup({ from: 'uni-id-users', l ...
分类:
其他好文 时间:
2021-06-24 18:27:17
阅读次数:
0
// 什么情况下适用promise? // 一般情况下是有异步请求操作时,使用promise对这个异步操作进行封装 // new ->构造函数(1.保存了一些状态信息 2.执行传入的函数) // 在执行传入的回调函数时,会传入两个参数,resolve ,reject ,本身又是函数 ...
分类:
其他好文 时间:
2021-06-24 17:29:49
阅读次数:
0
原文链接:https://blog.csdn.net/qq_33207292/article/details/102624553 1.关于js js是单线程的,即主线程就只有一个 2.js事件循环 除了广义的同步任务和异步任务,对任务更细致费划分: macro-task(宏任务):包括整体代码 sc ...
分类:
Web程序 时间:
2021-06-23 16:38:08
阅读次数:
0