​ 技术文档链接太多了,不容易记,现在汇总在此,方便自己,也方便大家。 ​ 一、前端 类型兼容性 · TypeScript中文网 · TypeScript——JavaScript的超集 二、js调用公链与智能合约 web3.js - 以太坊 JavaScript API — web3.js 中文文档 Read More
posted @ 2022-04-03 22:25 走走停停走走 Views(144) Comments(0) Diggs(0) Edit
要验证一个字符串是否为有效的 JSON 格式,可以使用 JavaScript 的 JSON.parse() 方法,并结合 try...catch 语句来捕获解析过程中可能出现的异常。以下是一个示例函数: function isJSON(str) { if (typeof str 'string') Read More
posted @ 2025-01-15 15:58 走走停停走走 Views(1) Comments(0) Diggs(0) Edit
原页面: import { useHistory } from 'react-router-dom';const history = useHistory();const onViewDetail = async (item) => { const sourceParserNodeData = { Read More
posted @ 2024-12-04 17:21 走走停停走走 Views(38) Comments(0) Diggs(0) Edit
一、环境准备 1,下载JavaJDK 需要安装两个 JDK 版本:1.8 / 17 安装 Zulu JDK(不能使用 Oracle JDK) JDK17:https://www.azul.com/downloads/?version=java-17-lts&os=macos&package=jdk# Read More
posted @ 2024-10-23 17:38 走走停停走走 Views(15) Comments(0) Diggs(0) Edit
# Locally in your project. npm install -D typescript npm install -D ts-node # Or globally with TypeScript. npm install -g typescript npm install -g ts Read More
posted @ 2024-08-29 23:18 走走停停走走 Views(32) Comments(0) Diggs(0) Edit
调试需要配置: 在makefile中 则对应配置: Read More
posted @ 2024-08-21 17:15 走走停停走走 Views(13) Comments(0) Diggs(0) Edit
下载: https://www.postman.com/downloads/ 注册,登录 开始使用。 Read More
posted @ 2024-08-20 16:07 走走停停走走 Views(3) Comments(0) Diggs(0) Edit
一、环境搭建 https://go.dev/dl/ 查看是arm64,还是x86-64命令: -uname -a 我的是 Darwin okerdeMacBook-Pro.local 23.5.0 Darwin Kernel Version 23.5.0: Wed May 1 20:13:18 PD Read More
posted @ 2024-08-14 10:05 走走停停走走 Views(821) Comments(0) Diggs(0) Edit
前言:第一次用到多选,gpt非常好用,比之前网页方便太多。 import ProTable from '@ant-design/pro-table'; import React, { useState } from 'react'; const TableWithRowSelection = () Read More
posted @ 2024-08-12 16:56 走走停停走走 Views(227) Comments(0) Diggs(0) Edit
posted @ 2024-06-27 09:47 走走停停走走 Views(6) Comments(0) Diggs(0) Edit
6月26日 前几天我加上了,但其实理解,并不深刻。因为因为要加上static路径,就懵了。 // 静态文件服务 app.use('/static', express.static(path.join(__dirname, 'dist'))); app.get('/*', (req, res) => Read More
posted @ 2024-06-19 22:50 走走停停走走 Views(30) Comments(0) Diggs(0) Edit