最简单的在微信开发者工具里新建一个项目(选不使用云开发,再最基础的模板)
在pages下面的index.wxml里把所有代码都删了,替换成下面代码,
- <web-view src="https://替换你的域名/"></web-view>
复制代码 在app.json中删除所有代码,替换下面代码
- {
- "pages": [
- "pages/index/index"
- ],
- "window": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "替换你的小程序名字",
- "navigationBarBackgroundColor": "#ffffff"
- },
- "style": "v2",
- "componentFramework": "glass-easel",
- "sitemapLocation": "sitemap.json",
- "lazyCodeLoading": "requiredComponents"
- }
复制代码 活字格开发的H5页面就变成了小程序了。
不知道能不能帮上你
|