摘要:
一、创建模块依赖文件 go mod init example.com/hello //example.com是能够访问的网址路径,hello是模块名 二、下载第三方模块 go get rsc.io/quote/v4 //模块库网址:https://pkg.go.dev/ 三、整理当前项目调用的第三方 阅读全文
摘要:
1.Class 'SQLite3' not found 解决方法: 没启用php_sqlite3.dll,所以找不到那个类。 在php.ini中找到 extension=php_sqlite3.dll 将其前面的分号去掉,表示启用。 Class 'SQLite3' not found_尹子昊的博客- 阅读全文
摘要:
终端执行 npm config set registry https://registry.npm.taobao.org npm config set sass_binary_site https://npm.taobao.org/mirrors/node-sass npm config set p 阅读全文