W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
讓我們在一分鐘內(nèi)開啟一個(gè)支付寶小程序項(xiàng)目吧!
釘釘小程序直接使用支付寶模式即可
$ npx degit remaxjs/template-alipay my-app$ cd my-app && npm install
$ npm run dev
打開支付寶小程序開發(fā)者工具,選中項(xiàng)目 dist 目錄,你將看到
成功!
現(xiàn)在我們來看一下 Remax 應(yīng)用的結(jié)構(gòu):
my-app/┳ package.json┣ dist/┣ node_modules/┣ src/┗━┓ app.js┣ app.css┣ app.config.js┣ pages/┗━┓ index/┗━┓┣ index.js┣ index.module.css┣ index.config.js
dist
為編譯后的文件目錄。
src
為源文件目錄
app.js
入口文件
app.css
全局樣式文件
app.config.js
為小程序全局配置文件,對應(yīng) app.json
module.exports = {pages: ['pages/index/index'],window: {navigationBarTitleText: 'My Project',},};
pages
存放項(xiàng)目頁面
pages/index/index.js
頁面文件,對應(yīng)小程序 Page 方法
import * as React from 'react';import { View, Text } from 'remax/alipay';import './index.module.css';export default () => {return (<View><Text>pages/index/index</Text></View>);};
默認(rèn)導(dǎo)出的的 React 組件就是當(dāng)前的頁面
Remax 針對不同平臺(tái)有對應(yīng)的實(shí)現(xiàn),如 remax/alipay
,remax/wechat
,remax/toutiao
等等,開發(fā)者可根據(jù)需要選擇對應(yīng)的平臺(tái)。
index.module.css
頁面樣式文件
index.config.js
頁面配置文件,會(huì)自動(dòng)轉(zhuǎn)換成小程序頁面配置文件 index.json
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: