封装方法 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
1 <?php 2 $s=0; 3 for($i=100;$i<=999;$i++){ 4 if($i%2==1){ 5 $s+=$i; 6 } 7 } 8 echo $s; 9 echo "<br>"; 10 ?> 1 function getQ($num, $sum = 0) { 2 $numQ ...
分类:
Web程序 时间:
2021-06-28 18:50:45
阅读次数:
0
select 1 as id,'是' as text from dual union all select 0 as id ,'否' as text from dual 同时查询出十条数据 select * from dual connect by 0 + level <= 10; 按照这个特性计算 ...
分类:
数据库 时间:
2021-06-28 18:48:46
阅读次数:
0
1 CREATE FUNCTION [dbo].[parseJSON] (@Json NVARCHAR(MAX)) 2 RETURNS @hierarchy TABLE (element_id INT IDENTITY(1, 1) NOT NULL, /* internal surrogate pr ...
分类:
数据库 时间:
2021-06-28 18:39:44
阅读次数:
0
1、在查询中根据A字段关联另一个表,并用另一个表A字段对应的另一个字段替换本表中A字段的值。 virtualid表,两列label, number;virtualid_zd表,两列name, number,怎么在查询 ...
分类:
数据库 时间:
2021-06-28 18:26:05
阅读次数:
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
export function chooseWXPay(params: wx.ChooseWXPayConfig) { return new Promise<{ status: 'success' | 'error' | 'cancel'; result?: string; message?: st ...
分类:
微信 时间:
2021-06-28 17:44:33
阅读次数:
0
身份证格式 六位数字地址码 + 八位数字出生日期码 + 三位数字顺序码 + 一位数字校验码 checkIdCard.js checkIdCard: function (idCard){ //15位和18位身份证号码的正则表达式 var regIdCard=/^(^[1-9]\d{7}((0\d)|( ...
分类:
Web程序 时间:
2021-06-25 17:26:41
阅读次数:
0
1.去官网下载安装包http://www.oracle.com/technetwork/topics/winx64soft-089540.html 2.1instantclient-basic-windows.x64-19.11.0.0.0.zip 2.2instantclient-sqlplus- ...
分类:
数据库 时间:
2021-06-25 17:25:38
阅读次数:
0