封装方法 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
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
通过定时器实现间隔一秒输出1,在间隔一秒输出2 第一种通过定时器方式实现这个需求 setTimeout(()=>{ console.log(1); setTimeout(()=>{ console.log(2); },1000) },1000) 另一种通过promise来实现 let promise ...
分类:
其他好文 时间:
2021-06-21 20:07:56
阅读次数:
0
异步多线程历险记、Await/Async、Task、Thread ...
分类:
编程语言 时间:
2021-06-19 19:30:25
阅读次数:
0
<!DOCTYPE html> <head> <script src="https://cdn.bootcdn.net/ajax/libs/jquery/3.6.0/jquery.min.js"></script> <script> let arr = []; function draw() { a ...
分类:
编程语言 时间:
2021-06-15 17:52:03
阅读次数:
0
在上一篇文章里,我们通过注入sentinel component到apigateway实现了对下游服务的保护,不过受限于目前变更component需要人工的重新注入配置以及重启应用更新component等等原因,对于真实的环境运维稍有难度,最近我根据sentinel-golang相关文档重新编写了一 ...
分类:
Web程序 时间:
2021-06-13 09:24:46
阅读次数:
0
public void TestCallback(IJavascriptCallback javascriptCallback) { const int taskDelay = 1500; Task.Run(async () => //异步标记(async )的lambda表达式,相当于异步函数(( ...
分类:
其他好文 时间:
2021-06-10 18:26:18
阅读次数:
0
CountDownLatch是一个同步辅助工具,用于使一个或多个线程等待(即阻塞)知道一组在其他线程中的任务结束。 CountDownLatch必须用给定的count(一个int类型的大于等于0的值)进行初始化。调用await方法将使线程阻塞,直到当前计数(count值)由于countdown方法的 ...
分类:
编程语言 时间:
2021-06-10 17:37:56
阅读次数:
0