https://github.com/hancoson/wechat-app-zhihudaily
又一个知乎日报微信小程序
https://github.com/hancoson/wechat-app-zhihudaily
weapp-demo wechat zhihu-daily
Last synced: 4 months ago
JSON representation
又一个知乎日报微信小程序
- Host: GitHub
- URL: https://github.com/hancoson/wechat-app-zhihudaily
- Owner: Hancoson
- License: mit
- Created: 2017-11-08T07:31:28.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-11-14T03:37:12.000Z (over 7 years ago)
- Last Synced: 2025-01-06T02:12:14.210Z (5 months ago)
- Topics: weapp-demo, wechat, zhihu-daily
- Language: JavaScript
- Homepage: https://github.com/Hancoson/wechat-app-zhihudaily
- Size: 5.42 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 又一个知乎日报
> 一个微信小程序开发的知乎日报应用
## 说明
- 简单的知乎日报客户端,实现了获取最新文章,主题日报,日报详情,主题列表等的数据展示
- 加入[wxPares](https://github.com/icindy/wxParse)解析HTML(性能比较差)
## 数据接口
> 数据接口主要依据「[知乎日报 API](https://github.com/izzyleung/ZhihuDailyPurify/wiki/%E7%9F%A5%E4%B9%8E%E6%97%A5%E6%8A%A5-API-%E5%88%86%E6%9E%90)」
- 历史日报 - [https://news-at.zhihu.com/api/4/news/before](https://news-at.zhihu.com/api/4/news/before)
- 最新日报 - [https://news-at.zhihu.com/api/4/news/latest](https://news-at.zhihu.com/api/4/news/latest)
- 文章 - [https://news-at.zhihu.com/api/4/news](https://news-at.zhihu.com/api/4/news)##目录结构
```
├── app.js
├── app.json
├── app.wxss
├── config.js
├── pages
│ ├── about
│ ├── article
│ ├── index
│ └── layout
├── images
│ ├── 01.png
│ ├── 02.png
│ ├── 03.png
│ └── 04.png
└── utils
├── config.js
├── fetch.js
├── format.js
├── getDate.js
└── util.js
```
## 开发环境
微信开发者工具 v1.01.1711020## 主要截图



## 参考
- [UI](https://weui.io)
- [微信公众平台|小程序](https://mp.weixin.qq.com/debug/wxadoc/introduction/index.html?t=2017112)