小程序QuickStart - SoftwareEngineeringPractise/Medo GitHub Wiki

账户[email protected]

密码: 小组群里

App ID:wx70297882f4ec8393

repo: SoftwareEngineeringPractise/Medo-WeApp

开发框架WePY

WePY借鉴了Vue.js(后文简称Vue)的语法风格和功能特性,如果你之前从未接触过Vue,建议先阅读Vue的官方文档,以熟悉相关概念


微信开发 SDK

下载 请下载使用最新版本 (1.02.1810250)


小程序开发文档

阅读建议:

  • 通读“简易教程”、“框架”

  • 浏览“组件”、“API”目录,在需要的时候进行查阅

  • 选择性阅读“工具”、“小程序·云开发”


用GitHub上的源码创建微信小程序开发项目

  1. fork SoftwareEngineeringPractise/Medo-WeApp 这个项目

  2. 把fork到自己账户下的仓库git clone 到本地

$ git clone [email protected]:(your-name)/Medo-WeApp.git

  1. 与自己的GitHub的这个仓库remote

git remote add weapp [email protected]:(your-name)/Medo-WeApp.git

  1. WePY框架安装

npm install wepy-cli -g

安装的版本为1.7.3

  1. 安装依赖

npm install

  1. 打开微信开发者工具,创建项目,输入appid,本地目录选择Medo-WeApp文件夹, 这样就创建好了

  2. 开启实时编译

wepy build --watch


WePY初始化项目**(这个已经完成了,不需再做)**

初始化命令和过程、结果如下:

$ wepy init standard ./
? Target directory exists. Continue? (Y/n) Y
? Target directory exists. Continue? Yes
? Project name (./) medo
? Project name medo
? AppId (touristappid) wx70297882f4ec8393
? AppId wx70297882f4ec8393
? Project description (A WePY project) medo by WePY
? Project description medo by WePY
? Author (sun <[email protected]>)
? Author sun <[email protected]>
? Use ESLint to lint your code? (Y/n) Y
? Use ESLint to lint your code? Yes
? Use Redux in your project? (Y/n) Y
? Use Redux in your project? Yes
? Use web transform feature in your project? (Y/n) Y
? Use web transform feature in your project? Yes

   wepy-cli · Generated "./".

小程序发布

continue...