微信小程序-项目结构

1.项目的目录结构


微信小程序-项目结构_第1张图片
目录结构.png
  • api
    接口的封装,这里使用的是promise
//orderComment.js
import { baseUrl, MSMKAUTH, auth } from './config.js'

export default (order_id,col,rating,preference,textarea) => {
  return new Promise((reslove, reject) => {
    wx.request({
      url: `${baseUrl}/dispatch/comment/`,
      data: {
        order_id,
        col,
        rating,
        preference,
        textarea,
      },
      header: {
        MSMKAUTH: auth,
        'content-type': 'application/x-www-form-urlencoded'
      },
      method: 'post',
      success(res) {
        reslove(res)
      },
      fail(err) {
        reject(err)
      }
    })
  })
}

坑1:微信的请求必须是htttps://...

  • basics
    一些基础的公共组件,例如ListItem, Loading, Tabbar组件等
  • commponets
    组件
  • images
    图片
  • pages
    展示的页面
  • stytes
    css样式,比如一些公用的样式
  • utils
    公用的js方法
  • app.js app.json app.wxss 小程序的入口文件
  • project.config.json 小程序的配置文件
    主要是appid的配置,当然这些在登录开发工具的时候会自然填写


    微信小程序-项目结构_第2张图片
    image.png

你可能感兴趣的:(微信小程序-项目结构)