# ithome-lite ([WEB 版](https://github.com/F-loat/ithome-lite/tree/web-version))
> IT之家小程序版客户端
## 相关依赖
* [flyio](https://github.com/wendux/fly/blob/master/README-CH.md) - 同时支持浏览器、小程序、Node、Weex 及快应用的基于 Promise 的跨平台请求库
* [mpvue-entry](https://github.com/F-loat/mpvue-entry) - 集中式页面配置,不再需要重复编辑各页面的 main.js 文件
* [mpvue-router-patch](https://github.com/F-loat/mpvue-router-patch) - 在 mpvue 中使用 vue-router 兼容的路由写法
* [xmlstring2json](https://github.com/vilien/xmlstring2json) - xml字符串转换 json 格式,适用于微信小程序
## 项目模板
* [F-loat/mpvue-quickstart](https://github.com/F-loat/mpvue-quickstart) 使用 mpvue-entry 配置入口,支持新增页面热更新
``` bash
$ vue init F-loat/mpvue-quickstart my-project
```
## 截图展示
<p>
<img alt="新闻列表" src="./screenshots/news.jpg" width="33%" />
<img alt="新闻详情" src="./screenshots/detail.jpg" width="33%" />
<img alt="圈子列表" src="./screenshots/quanzi.jpg" width="33%" />
</p>
## Tips
* flyio 使用方法
具体内容参见 [微信小程序中使用flyio](https://wendux.github.io/dist/#/doc/flyio/wx),这里提示下小程序中需要引入的是 `flyio/dist/npm/wx.js` 这个文件,可以配置下 webpack 的 alias 方便调用
``` js
alias: {
'@': resolve('src'),
vue: 'mpvue',
flyio: 'flyio/dist/npm/wx',
wx: resolve('src/utils/wx')
}
```
* vuex 使用方法
建立 `src/store/index.js` 文件
``` js
import Vue from 'vue'
import Vuex from 'vuex'
Vue.use(Vuex)
const store = new Vuex.Store({
state: {
},
mutations: {
},
actions: {
}
})
export default store
```
在 `src/main.js` 中引用
``` js
import Vue from 'vue'
import store from '@/store'
import App from '@/App'
const app = new Vue({
store,
...App
}).$mount()
```
最后在需要使用 vuex 的页面相对应的 `main.js` 文件中像 `src/main.js` 一样引用即可
## 部分 api 列表
* 新闻列表 https://api.ithome.com/json/newslist/news?r=0
* 文章详情 https://api.ithome.com/xml/newscontent/350/412.xml
* 相关文章 https://api.ithome.com/json/tags/0350/350362.json
* 最热评论 https://dyn.ithome.com/json/hotcommentlist/350/87a8e5b144d81938.json
* 评论列表 https://dyn.ithome.com/json/commentlist/350/87a8e5b144d81938.json
* 评论详情 https://dyn.ithome.com/json/commentcontent/d739ee8f2ceb0a27.json
* 轮播新闻 https://api.ithome.com/xml/slide/slide.xml
* 圈子列表 https://apiquan.ithome.com/api/post?categoryid=0&type=0&orderTime=&visistCount&pageLength
* 圈子详情 https://apiquan.ithome.com/api/post/236076
* 圈子评论 https://apiquan.ithome.com/api/reply?postid=236076&replyidlessthan=3241294
## 相关文章
* [Mpvue 小程序转 Web 实践总结](https://juejin.im/post/5ab84a33f265da239c7b56bd)
没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
同时支持浏览器、小程序、Node、Weex 及快应用的基于 Promise 的跨平台请求库 集中式页面配置,不再需要重复编辑各页面的 main.js 文件 在 mpvue 中使用 vue-router 兼容的路由写法 xml字符串转换 json 格式,适用于微信小程序 使用 mpvue-entry 配置入口,支持新增页面热更新
资源推荐
资源详情
资源评论
收起资源包目录
IT之家小程序版客户端(使用 Mpvue 开发,兼容 Web)ithome-lite-master.zip (56个子文件)
IT之家小程序版客户端(使用 Mpvue 开发,兼容 Web)ithome-lite-master
ithome-lite-master
.editorconfig 147B
screenshots
news.jpg 160KB
quanzi.jpg 113KB
detail.jpg 212KB
.eslintrc.js 742B
project.config.json 505B
更多精品创业项目下载.url 184B
src
pages
news
comment.vue 1021B
detail.vue 3KB
list.vue 2KB
quanzi
detail.vue 3KB
list.vue 763B
App.vue 246B
app.json 956B
store
index.js 2KB
styles
index.less 25B
main.js 241B
utils
request.js 502B
api.js 1KB
wx.js 39B
index.js 2KB
components
comment-item.vue 887B
topic-item.vue 2KB
news-item.vue 990B
router
routes.js 690B
LICENSE 1KB
.babelrc 312B
package.json 2KB
build
check-versions.js 1KB
dev-server.js 530B
utils.js 2KB
vue-loader.conf.js 299B
webpack.prod.conf.js 3KB
build.js 1KB
webpack.base.conf.js 2KB
webpack.dev.conf.js 2KB
package-lock.json 396KB
.postcssrc.js 130B
index.html 199B
.gitignore 145B
.eslintignore 23B
static
assets
news.png 2KB
quan_comment.png 894B
news-active.png 3KB
avatar_default.png 5KB
quanzi.png 3KB
quan_hit.png 1KB
quanzi-active.png 3KB
comment.png 5KB
qrcode_beta.jpg 59KB
.gitkeep 0B
qrcode.jpg 50KB
README.md 3KB
config
prod.env.js 48B
index.js 1KB
dev.env.js 139B
共 56 条
- 1
资源评论
朝兮夕兮
- 粉丝: 1
- 资源: 65
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- (2024最新整理)42万+世界各国新冠疫情数据(2020.1-2024.8)
- ESP32开发板(CH340驱动芯片) Type-C口+数据线+0.96显示屏+杜邦线 链接wifi,显示当前时间
- windows hex查看工具
- C语言编程基础及其应用详解:从入门到实战练习.pdf
- C#CS小型医院HIS门诊挂号收费管理系统源码数据库 SQL2008源码类型 WinForm
- 高等数学 PPT - 向量的数量积与向量积.zip
- java智慧云智能教育平台源码 前后端分离数据库 MySQL源码类型 WebForm
- 劳动教育 - 3D 建模期末作业 - 紫砂茶壶.123dx
- Linux基础操作与安全实践指南
- CCF会员复习资料(1).zip
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功