詩集“寬度=“180”樣式=“最大寬度:100%;”>
附有 React 的免費 Web 工具包,可透過 SSR 進行快速網頁設計和開發。它也是一種微前端架構。使用react、redux、router、axios 和express。這個專案是使用 Nodejs 庫啟動的。專案支援透過 pm2 從許多儲存庫託管服務進行自動部署。 poemkit提供了超過50 個內建 UI 元件,用於建立現代 Web 應用程式。
poemkit可以透過命令來工作和部署,但仍然需要在命令後面編寫真正的程式碼。這些套件用作 UI 元件和一些邏輯模組,可以將它們組合到真實的網站或應用程式原型中,但仍需要程式設計功能才能使其在現實世界中運作。 poemkit符合完全可自訂的 Webpack 要求。
?您也可以使用獨立的 React UI 元件庫(基於 BootStrap 5)Funda UI。
如需線上演示,請查看 https://uiux.cc/poemkit
伺服器運行在http://localhost:3000
poemkit /
├── README.md
├── CHANGELOG.md
├── CONTRIBUTING.md
├── LICENSE
├── ecosystem.config.js ------------------------- # for pm2
├── babel.config.js
├── tsconfig.json
├── webpack.config.js
├── package-lock.json
├── package.json
├── test/ --------------------------- # Unit Testing scripts
├── public/ --------------------------- # HTML template of Homepage
│ ├── index.html
│ ├── manifest.json
│ └── server/ ------------------------------- # PHP scripts used to the server for testing
│ └── assets/
├── dist/ ------------------------------- # Files compiled, used in the production environment
│ ├── css/
│ │ ├── poemkit .css
│ │ └── poemkit .min.css
│ └── js/
│ │ ├── poemkit .js
│ │ └── poemkit .min.js
├── src/
│ ├── client/
│ │ ├── client.js
│ │ ├── actions/
│ │ ├── reducers/
│ │ ├── helpers/
│ │ ├── services/
│ │ ├── router/
│ │ ├── components/ ------------------------- # Independent React components
│ │ │ ├── * /
│ │ │ ├── _utils/ ----------------------- # General utilities & snippets(js & css)
│ │ │ └── _plugins/ --------------------- # Third-party plugins
│ │ ├── views/ ------------------------------ # Website pages
│ │ │ ├── _pages/
│ │ │ └── _html/
│ └── server/
│ │ ├── app.js
│ │ ├── server.js
│ │ └── renderer.js
│ └── store/
│ │ └── createStore.js
│ └── config/
│ │ ├── tmpl-manifest.json ----------------- # `manifest.json` file template
│ │ └── websiteConfig.js ------------------- # website config
└──
webpack.config.js
以使用記憶體掛載) 您需要在電腦上設定節點。這會將建置的可分發檔案輸出到./dist/*
和./public/*.html
。
步驟1.使用NPM(找到您目前的專案目錄,然後輸入以下命令。)或從Github下載最新版本。對於nodejs,你必須安裝一些依賴項。
$ npm install poemkit
或克隆儲存庫以獲取所有來源文件,包括建置腳本:
$ git clone git://github.com/xizon/ poemkit .git
步驟 2.首先,使用絕對路徑進入" poemkit /"
資料夾目錄。
$ cd /{your_directory}/ poemkit
步驟 3.在進行所有開發工作之前,請確保已安裝Node 10+
。之後,在主目錄中執行以下程式碼來安裝節點模組相依性。
$ npm install
目前測試環境是`Node 18+`、`npm 9+`。如果依賴安裝失敗(通常是因為你升級了Nodejs版本,目前測試為Node 18+),可能是新版本的npm與舊版的npm衝突,請使用下列指令安裝相依:$ npm install --legacy-peer-deps如果安裝仍然失敗,請使用下列方法:刪除
package.json
中的devDependencies 、依賴項和peerDependency ,刪除檔案package-lock.json
並重新安裝依賴項:$ npm install --save-dev @testing-library/jest-dom @testing-library/[email protected] @types/react @typescript-eslint/eslint-plugin @typescript-eslint/parser babel-loader clean-webpack-plugin cross-env css-loader css-minimizer-webpack-plugin eslint eslint-config-prettier eslint-plugin-prettier eslint-plugin-react file-loader glslify-loader html-loader html-webpack-plugin identity-obj-proxy include-file-webpack-plugin jest jsdom jest-environment-jsdom json-loader log-timestamp mime-types mini-css-extract-plugin sass nodemon postcss prettier prettier-loader random-string raw-loader [email protected] safe-buffer sass-loader style-loader tar terser-webpack-plugin ts-jest ts-node tsconfig-paths typescript webpack webpack-cli webpack-dev-middleware webpack-dev-server $ npm install @babel/core @babel/node @babel/plugin-proposal-class-properties @babel/plugin-transform-runtime @babel/polyfill @babel/preset-env @babel/preset-flow @babel/preset-react @babel/preset-typescript @babel/register axios babel-plugin-module-resolver compression cors express ignore-styles moment [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected]
步驟4.常用命令:
調試應用程式。它可以作為 TypeScript 單獨檢查,無需編譯和打包行為。
$ npm run check
使用 webpack 打包檔案。
$ npm run build
執行以下命令進行本機測試和程式碼檢查。可以看到伺服器正在運行。 (僅運行 Express 伺服器。)。使用Ctrl + C
來停止它。
$ npm run dev
步驟 5.完成後,這將啟動一個可以透過以下位址存取的伺服器:
http://localhost:3000
建議在調試之前捆綁新程式碼。
步驟 6(可選)。在託管伺服器上部署節點伺服器
請在部署之前執行建置命令。 (如果由於Node權限的原因不起作用,請使用以下命令)
$ npm run deploy
停止現有部署
$ npm run destroy
步驟 7(可選)。單元測試
$ npm run test
筆記:
a) 錯誤:npm 更新檢查失敗。
解決方案:
$ sudo chown -R $USER : $( id -gn $USER ) /Users/{username}/.configb) 錯誤:Node sass 版本 6.xx 與 ^ 4.xx 不相容
解決方案:
$ npm install [email protected]c) 如果升級Node版本,請執行以下程式碼:
$ npm install $ npm rebuild node-sass
使用 PM2 作為服務啟動 Reactjs 應用程式(僅當您使用 Node v13.9.0 或更高版本時才有效。)
這裡將安裝Node14+版本
$ curl -sL https://rpm.nodesource.com/setup_14.x | sudo bash -
$ sudo yum install nodejs
$ node --version # v14.16.1
$ npm --version # 6.14.12
$ which node babel-node # check the location of node and babel-node
$ sudo npm install pm2@latest -g
$ sudo npm install -g babel-cli
$ sudo npm install -g @babel/core @babel/cli @babel/preset-env
$ sudo npm install -g typescript ts-node
$ sudo pm2 install typescript
# into your `" poemkit /"` folder directory.
$ cd /{your_directory}/ poemkit
# run app
$ pm2 start ecosystem.config.js
# Detect available init system, generate configuration and enable startup system, and you can check the status of the same using
$ pm2 startup
$ systemctl status pm2-root
$ pm2 start /{your_directory}/ poemkit /ecosystem.config.js --restart-delay=3000
$ pm2 save
# other commands
$ pm2 restart ecosystem.config.js
$ pm2 stop ecosystem.config.js
$ pm2 delete ecosystem.config.js
$ pm2 list
$ pm2 logs
在雲端伺服器上使用NPM或PM2部署應用程式時可能出現的問題的一些解決方案:
a)錯誤:權限被拒絕,存取'/usr/lib/node_modules'
解決方案:
chmod -R a+x node_modulesb)錯誤:JavaScript 堆疊記憶體不足
V8 中的記憶體使用有嚴格的標準限制,如果您不手動增加記憶體使用量,則最大為 ~1GB(32 位元)和 ~1.7GB(64 位元)。
解決方案:
export NODE_OPTIONS=--max_old_space_size=4096
c) 錯誤:EACCES:權限被拒絕,mkdir '/root/.pm2/xxxx'
解決方案:
一般來說,只要避免使用
NPM
執行 PM2 指令即可。您仍然可以嘗試以下操作:
確保在以無守護程式模式啟動 PM2 之前殺死任何 PM2 執行個體 (pm2 Kill)。
# re-install PM2 (optional) sudo npm i -g pm2 # if pm2 was reinstalled, ts-node must be reinstalled (optional) sudo npm install -g ts-node@latest # clear all pm2 instances pm2 kill # then restart it pm2 start xxxxxx
您已經從這裡創建了一個基本的 React 應用程序,然後您需要在 Apache 或 Nginx Web 伺服器上部署一個 React 應用程式。設定代理的教學請參考網路。
現在應用程式已準備好部署,我們應該準備 Nginx 端。如果未安裝 Nginx,可以透過執行以下兩個指令使用 apt 打包系統輕鬆安裝 Nginx:
$ sudo apt update
$ sudo apt install nginx
或者
$ sudo yum install nginx -y
啟動 Nginx:
$ systemctl start nginx
開機啟動:
$ systemctl enable nginx
在 CentOS 8 上使用 FirewallD 設定防火牆:
$ firewall-cmd --permanent --zone=public --add-service=http
$ firewall-cmd --permanent --zone=public --add-service=https
$ firewall-cmd --permanent --zone=public --add-port=3000/tcp
$ firewall-cmd --reload
$ systemctl restart nginx
我們可以檢查 Nginx 是否正在系統上運行:
$ systemctl status nginx
好了,現在 Nginx 服務已經成功開始運作了,我們可以繼續修改/etc/nginx/conf.d/default.conf
中的設定檔了。我們將在此處指向網域以啟動正確的 React 應用程式:
$ vi /etc/nginx/conf.d/default.conf
在文件末尾添加:
server {
listen 443 ssl ;
server_name backend1.example.com ;
...
location / {
proxy_set_header Host $http_host ;
proxy_pass http://{YOUR_IP}:3000 ;
}
}
將這些行新增至檔案後,我們需要重新啟動 Nginx 服務:
$ systemctl restart nginx
如果服務重新啟動成功,可能不會有任何訊息。否則,它會吐出幾行錯誤訊息。
修改檔案./src/server/app.js
,使用 https.createServer([options][, requestListener]) 包裝 Express 服務,請查看以下範例程式碼:
import path from 'path' ;
import https from 'https' ;
const cert = fs . readFileSync ( path . join ( __dirname , '../../path/bundle.crt' ) ) ;
const key = fs . readFileSync ( path . join ( __dirname , '../../path/ca.key' ) ) ;
const server = https . createServer ( { key : key , cert : cert } , app ) ;
...
app . get ( '/' , ( req , res ) => { res . send ( 'this is an secure server' ) } ) ;
...
server . listen ( port , ( ) => console . log ( `Frontend service listening on port: ${ port } , access https://localhost: ${ port } in the web browser` ) ) ;
要在webpack.config.js
中消除開發和生產版本之間的歧義,您可以使用環境變數。
如果你想同時考慮OS X和Windows,可以使用第三方工具cross-env
步驟1.執行指令安裝cross-env
$ npm install --save-dev cross-env
步驟2.在腳本中的package.json
檔案中,我們將指示生產版本中組裝webpack的現成指令
"scripts" : {
"dev" : " cross-env NODE_ENV=development nodemon --require ignore-styles --exec ts-node -r tsconfig-paths/register ./src/server/server.js " ,
"build" : " cross-env NODE_ENV=production webpack --progress --mode production "
}
透過cross-env設定變數和值NODE_ENV=xxx
,然後我們在執行webpack時得到這個變數
步驟 3.進一步進入設定檔webpack.config.js
讓我們從物件進程和進一步的屬性 env 中應用此檢查到我們的變數NODE_ENV :
if ( process . env . NODE_ENV === 'production' ) {
// .. тwe apply (or add) some kind of plugin
}
修改預設模板./src/client/views/_html/index.html
。它將自動產生為./public/index.html
。它包含React Helmet需要使用的HTML標籤,例如:
<!DOCTYPE html >
< html {{helmetHtmlAttributes}} >
< head >
< meta charset =" utf-8 " />
{{helmetTitle}}
<!-- manifest.json provides metadata used when your web app is added to the
homescreen on Android. See https://developers.google.com/web/fundamentals/engage-and-retain/web-app-manifest/
============================================= -->
< link rel =" manifest " href =" @@{website_root_directory}/manifest.json " />
<!-- Mobile Settings
============================================= -->
< meta name =" viewport " content =" width=device-width, initial-scale=1, maximum-scale=1 " />
<!-- Mobile Settings end -->
<!-- Compatibility
============================================= -->
< meta http-equiv =" X-UA-Compatible " content =" IE=edge " />
<!-- Compatibility end -->
<!-- Core & Theme CSS
============================================= -->
< link rel =" stylesheet " href =" @@{website_root_directory}/dist/css/ poemkit .min.css?ver=@@{website_hash} " />
<!-- Core & Theme CSS end -->
<!-- Overwrite Font Files
*
* The fonts extracted with `mini-css-extract-plugin` may not load correctly
* Font files in `dist/fonts/` are fetched automatically by `file-loader`, you can configure webpack.config.js to name them.
============================================= -->
< style >
@font-face {
font-family: 'Font Awesome 5 Free';
font-style: normal;
font-weight: 900;
font-display: $fa-font-display;
src: url('@@{website_root_directory}/dist/fonts/fa-solid-900.eot');
src: url('@@{website_root_directory}/dist/fonts/fa-solid-900.eot?#iefix') format('embedded-opentype'),
url('@@{website_root_directory}/dist/fonts/fa-solid-900.woff2') format('woff2'),
url('@@{website_root_directory}/dist/fonts/fa-solid-900.woff') format('woff'),
url('@@{website_root_directory}/dist/fonts/fa-solid-900.ttf') format('truetype'),
url('@@{website_root_directory}/dist/fonts/fa-solid-900.svg#fontawesome') format('svg');
}
.fa,
.fas {
font-family: 'Font Awesome 5 Free';
font-weight: 900;
}
@font-face {
font-family: 'Font Awesome 5 Brands';
font-style: normal;
font-weight: 400;
font-display: $fa-font-display;
src: url('@@{website_root_directory}/dist/fonts/fa-brands-400.eot');
src: url('@@{website_root_directory}/dist/fonts/fa-brands-400.eot?#iefix') format('embedded-opentype'),
url('@@{website_root_directory}/dist/fonts/fa-brands-400.woff2') format('woff2'),
url('@@{website_root_directory}/dist/fonts/fa-brands-400.woff') format('woff'),
url('@@{website_root_directory}/dist/fonts/fa-brands-400.ttf') format('truetype'),
url('@@{website_root_directory}/dist/fonts/fa-brands-400.svg#fontawesome') format('svg');
}
.fab {
font-family: 'Font Awesome 5 Brands';
font-weight: 400;
}
@font-face {
font-family: 'Font Awesome 5 Free';
font-style: normal;
font-weight: 400;
font-display: $fa-font-display;
src: url('@@{website_root_directory}/dist/fonts/fa-regular-400.eot');
src: url('@@{website_root_directory}/dist/fonts/fa-regular-400.eot?#iefix') format('embedded-opentype'),
url('@@{website_root_directory}/dist/fonts/fa-regular-400.woff2') format('woff2'),
url('@@{website_root_directory}/dist/fonts/fa-regular-400.woff') format('woff'),
url('@@{website_root_directory}/dist/fonts/fa-regular-400.ttf') format('truetype'),
url('@@{website_root_directory}/dist/fonts/fa-regular-400.svg#fontawesome') format('svg');
}
.far {
font-family: 'Font Awesome 5 Free';
font-weight: 400;
}
</ style >
<!-- Overwrite Font Files end -->
<!-- SEO
============================================= -->
{{helmetMeta}}
{{helmetLink}}
< meta name =" generator " content =" @@{website_generator} " />
< meta name =" author " content =" @@{website_author} " />
<!-- SEO end -->
<!-- Favicons
============================================= -->
< link rel =" icon " href =" @@{website_root_directory}/assets/images/favicon/favicon-32x32.png " type =" image/x-icon " />
< link rel =" shortcut icon " href =" @@{website_root_directory}/assets/images/favicon/favicon-32x32.png " sizes =" 32x32 " />
< link rel =" apple-touch-icon " href =" @@{website_root_directory}/assets/images/favicon/apple-touch-icon-57x57.png " />
< link rel =" apple-touch-icon " sizes =" 72x72 " href =" @@{website_root_directory}/assets/images/favicon/apple-touch-icon-72x72.png " />
< link rel =" apple-touch-icon " sizes =" 114x114 " href =" @@{website_root_directory}/assets/images/favicon/apple-touch-icon-114x114.png " />
<!-- Favicons end -->
</ head >
< body {{helmetBodyAttributes}} >
< noscript >
You need to enable JavaScript to run this app.
</ noscript >
< div id =" app " > {{reactApp}} </ div >
<!-- Your Plugins & Theme Scripts
============================================= -->
< script >
var REVISION = "@@{website_version}" ,
APP_ROOTPATH = {
"templateUrl" : "@@{website_root_directory}" , //If the file is in the root directory, you can leave it empty. If in another directory, you can write: "/blog" (but no trailing slash)
"homeUrl" : "" , //Eg. https://uiux.cc
"ajaxUrl" : "" //Eg. https://uiux.cc/wp-admin/admin-ajax.php
} ;
</ script >
< script > window . __PRELOADED_STATE__ = { { preloadedState } } ; </ script >
< script src =" @@{website_root_directory}/dist/js/ poemkit .min.js?ver=@@{website_hash} " > </ script >
<!-- Your Plugins & Theme Scripts end -->
</ body >
</ html >
./public/manifest.json
檔案是根據./src/config/tmpl-manifest.json
自動產生的
您可以透過將resolve新增至webpack.config.js
來配置模組解析度。如果在導入另一個模組時使用相對路徑,就會很麻煩,因為你必須弄清楚所有的相對路徑。因此,您可以新增別名以方便自己。
webpack.config.js
:
...
const alias = {
pathConfig : './src/config' ,
pathComponents : './src/client/components' ,
pathRouter : './src/client/router' ,
pathHelpers : './src/client/helpers' ,
pathServices : './src/client/services' ,
pathReducers : './src/client/reducers' ,
pathPages : './src/client/views/_pages' ,
pathActions : './src/client/actions' ,
pathServer : './src/server' ,
pathStore : './src/store'
} ;
...
resolve : {
extensions : [ '.js' , '.jsx' , '.ts' , '.tsx' , '.scss' , '.sass' ] ,
alias : {
// specific mappings.
// Supports directories and custom aliases for specific files when the express server is running,
// you need to configure the `babel.config.js` and `tsconfig.json` at the same time
'@/config' : path . resolve ( __dirname , alias . pathConfig ) ,
'@/components' : path . resolve ( __dirname , alias . pathComponents ) ,
'@/router' : path . resolve ( __dirname , alias . pathRouter ) ,
'@/helpers' : path . resolve ( __dirname , alias . pathHelpers ) ,
'@/services' : path . resolve ( __dirname , alias . pathServices ) ,
'@/reducers' : path . resolve ( __dirname , alias . pathReducers ) ,
'@/pages' : path . resolve ( __dirname , alias . pathPages ) ,
'@/actions' : path . resolve ( __dirname , alias . pathActions ) ,
'@/server' : path . resolve ( __dirname , alias . pathServer ) ,
'@/store' : path . resolve ( __dirname , alias . pathStore ) ,
}
} ,
...
babel.config.js
:
...
"plugins" : [
[ "module-resolver" , {
"root" : [ "./src" ] ,
"alias" : {
"@/config" : "./src/config" ,
"@/components" : "./src/client/components" ,
"@/router" : "./src/client/router" ,
"@/helpers" : "./src/client/helpers" ,
"@/services" : "./src/client/services" ,
"@/reducers" : "./src/client/reducers" ,
"@/pages" : "./src/client/views/_pages" ,
"@/actions" : "./src/client/actions" ,
"@/server" : "./src/server" ,
"@/store" : "./src/store"
}
} ]
]
. . .
tsconfig.json
:
{
"compilerOptions" : {
"baseUrl" : " ./src " ,
"paths" : {
"@/config/*" : [ " config/* " ],
"@/components/*" : [ " client/components/* " ],
"@/router/*" : [ " client/router/* " ],
"@/helpers/*" : [ " client/helpers/* " ],
"@/services/*" : [ " client/services/* " ],
"@/reducers/*" : [ " client/reducers/* " ],
"@/pages/*" : [ " client/views/_pages/* " ],
"@/actions/*" : [ " client/actions/* " ],
"@/server/*" : [ " server/* " ],
"@/store/*" : [ " store/* " ]
}
}
}
package.json
:
{
"jest" : {
"testEnvironment" : " jsdom " ,
"moduleNameMapper" : {
" \ .(css|less|scss|sass)$" : " identity-obj-proxy " ,
"^@/config/(.*)" : " <rootDir>/src/config/$1 " ,
"^@/components/(.*)" : " <rootDir>/src/client/components/$1 " ,
"^@/router/(.*)" : " <rootDir>/src/client/router/$1 " ,
"^@/helpers/(.*)" : " <rootDir>/src/client/helpers/$1 " ,
"^@/services/(.*)" : " <rootDir>/src/client/services/$1 " ,
"^@/reducers/(.*)" : " <rootDir>/src/client/reducers/$1 " ,
"^@/pages/(.*)" : " <rootDir>/src/client/views/_pages/$1 " ,
"^@/actions/(.*)" : " <rootDir>/src/client/actions/$1 " ,
"^@/server/(.*)" : " <rootDir>/src/server/$1 " ,
"^@/store/(.*)" : " <rootDir>/src/store/$1 "
},
"transform" : {
"^.+ \ .(js|jsx)$" : " babel-jest " ,
"^.+ \ .(ts|tsx)?$" : " ts-jest "
}
}
}
使用webpack.config.js
中的輸出來配置與庫相關的設置,例如模組類型和命名空間。
...
const globs = {
port : 8080 ,
examples : 'public' ,
build : 'src/client' ,
dist : 'dist'
} ;
...
output : {
path : path . resolve ( __dirname , './' + globs . dist + '/js' ) ,
filename : '[name].js'
} ,
...
您可以透過修改package.json
的網站資訊配置來更新範本中的佔位符。像這樣:
{
"author" : " UIUX Lab " ,
"name" : " poemkit " ,
"email" : " [email protected] " ,
"version" : " 1.0.0 " ,
"projectName" : " poemkit " ,
"createdInfo" : " UIUX Lab (https://uiux.cc) " ,
"projectURL" : " https://uiux.cc " ,
"description" : " React toolkit for building a full website that also is a Micro-Frontend Architecture " ,
...
}
路由的配置,也是網站的主導航(不包括主導航中頁面配置的巢狀路由的配置)。訪問./src/client/router/RoutesConfig.js
。
路由器的一些腳本可以在檔案./src/client/router/App.js
中修改。
伺服器端的一些腳本可以在檔案./src/server/renderer.js
中修改。
要同時運行伺服器和 React 應用程序,我們需要將proxy
金鑰新增至package.json
。我們已經將伺服器設定為在連接埠 3000 上執行,因此將代理程式指向localhost:3000
。
{
"proxy" : " http://localhost:3000 " ,
...
}
PropTypes
檢查類型: $ npm run dev
然後,您可以使用以下 JavaScript 程式碼對其進行偵錯。在終端機中顯示錯誤和警告訊息。
import PropTypes from "prop-types" ;
import React , { Component } from 'react' ;
export default class YourComponentName extends Component {
public static propTypes = { } ;
constructor ( props ) {
super ( props ) ;
}
render ( ) { ... }
}
if ( process . env . NODE_ENV === 'development' ) {
YourComponentName . propTypes = {
displayEnable : PropTypes . bool . isRequired ,
htmlString : PropTypes . oneOfType ( [ PropTypes . string , PropTypes . object ] )
}
}
應用程式預設會載入一些第三方函式庫(圖示、動畫、3D引擎等),您可以根據需要載入它們,或修改設定檔。訪問./src/client/components/_plugins/
第三方外掛程式預設與自訂元件一起使用,您也可以將其移除。
變更網站根目錄,以便將項目上傳到其他目錄時可以使用。修改./src/config/websiteConfig.js
的關鍵rootDirectory
。
如果該檔案位於根目錄中,則可以將其留空。如果在其他目錄,可以寫:「/blog」。 (沒有尾部斜線)
{
"rootDirectory" : " "
}
網站位址(URL)通常用於 SEO 優化。修改./src/config/websiteConfig.js
的關鍵siteUrl
。 URL 將命名為https://domain-name.com
(無尾部斜線和子目錄)
{
"siteUrl" : " "
}
更改網站的 API URL。修改./src/config/websiteConfig.js
的關鍵API
,如下所示:
{
"API" : {
"RECEIVE_DEMO_LIST" : " https://apiurl1.com " ,
"RECEIVE_DEMO_LISTDETAIL" : " https://apiurl2.com "
}
}
尋找錯誤、發送拉取請求或改進我們的文件 - 歡迎並高度讚賞任何貢獻。首先,請參閱我們的貢獻指南。謝謝!
發布
鉻合金 | 火狐瀏覽器 | 邊緣 | IE | 狩獵之旅 | 歌劇 | iOS系統 | 安卓 |
---|---|---|---|---|---|---|---|
>= 49 | >= 45 | >=14 | >=11 | >= 9 | >= 30 | >=10 | >=4.4 |
獲得麻省理工學院許可。