01 2022 档案

摘要:frp ngrok 阅读全文
posted @ 2022-01-28 14:25 智商感人 阅读(36) 评论(0) 推荐(0)
摘要:可以评论留言探讨,共同进步哦! 准备工作: 一台公网ip的服务器 下载frp 下载地址传送门 保证服务端和客户端下载的版本是同一个版本 解释: frp 分为 frps[服务端] 和 frpc [客户端] 一般情况下,客户端只需要运行frpc,服务端只需要运行frps 由于服务端和客户端的运行环境可能 阅读全文
posted @ 2022-01-28 11:18 智商感人 阅读(2032) 评论(0) 推荐(0)
摘要:安装 一、简介 chocolatey Windows 包管理工具,相当于brew(The package manager for Windows) 官网 环境 Windows 7+ / Windows Server 2003+ PowerShell v2+ .NET Framework 4+ 二、下 阅读全文
posted @ 2022-01-18 15:53 智商感人 阅读(1317) 评论(0) 推荐(0)
摘要:1.Operand should contain 1 column(s) 原因: 这个语句的出现多是因为将select 的结果集用()包住了 例如: // 错误写法: SELECT (id, shopify_session) from session_list WHERE user_id=111 / 阅读全文
posted @ 2022-01-17 14:22 智商感人 阅读(56) 评论(0) 推荐(0)
摘要:ng=cd /d D:/soft/nginx && nginxClear.bat 阅读全文
posted @ 2022-01-15 11:23 智商感人 阅读(37) 评论(0) 推荐(0)
摘要:# Npm npm install dotenv --save # Yarn yarn add dotenv index.js: const dotenv = require("dotenv") dotenv.config() 在程序中尽早添加 dotenv.config() 这一行,以确保所有代码 阅读全文
posted @ 2022-01-14 15:43 智商感人 阅读(1232) 评论(0) 推荐(0)
摘要:.env shopify 商店应用配置,决定本项目属于哪个商店的哪个应用 SHOPIFY_API_KEY=20e29ab6a9ea6f3f1979c459eadeee11 SHOPIFY_API_SECRET=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 SHOP=k 阅读全文
posted @ 2022-01-04 09:11 智商感人 阅读(146) 评论(0) 推荐(0)
摘要:import React, { Component } from "react"; import Child from "./Child"; // 错误边界 export default class Parent extends Component { state = { hasError: '', 阅读全文
posted @ 2022-01-03 14:25 智商感人 阅读(208) 评论(0) 推荐(0)