目录结构

小程序的基础目录结构如下:

  1. |____app.ttss
  2. |____app.json
  3. |____project.config.json
  4. |____pages
  5. | |____index
  6. | | |____index.js
  7. | | |____index.json
  8. | | |____index.ttml
  9. | | |____index.ttss
  10. |____app.js

以上目录结构中的pages/可以根据实际情况进行灵活配置。

小程序的主体由下面单个文件组成:

文件必填作用
app.js小程序入口逻辑
app.json小程序公共设置,例如:所有页面路径等
app.ttss小程序公共样式

一个小程序页面由四个文件组成,如下:

文件必填作用
js页面逻辑
json页面配置
ttss页面样式表
ttml页面结构

原文: https://developer.toutiao.com/docs/framework/directory.html