# 微信小程序 cnode社区版本
> 官方文档:https://mp.weixin.qq.com/debug/wxadoc/dev/
> 参考资料:https://github.com/coolfishstudio/wechat-webapp-cnode
>入门小例子: https://github.com/vincentSea/wxsapp
### 小程序预览
![编辑器截图](./screenshots/demo2.gif)
![编辑器截图](./screenshots/8.png)
### 项目结构
<pre>
│ .gitattributes
│ .gitignore
│ app.js # 小程序逻辑
│ app.json # 小程序公共设置(页面路径、窗口表现、设置网络超时时间、设置多tab)
│ app.wxss # 小程序公共样式表
│ README.md # 小程序项目说明
│
├─image # 小程序图片资源
|
├─pages # 小程序文件
│ ├─common
│ ├─detail
│ ├─index
│ │ index.js # 页面逻辑
│ │ index.wxml # 页面渲染层
│ │ index.wxss # 页面样式
│ ├─login
| ├─logs
│ └─topics
│
└─utils # 小程序公用方法模块
api.js
util.js
</pre>
### 开发环境
下载地址 :https://mp.weixin.qq.com/debug/wxadoc/dev/devtools/download.html?t=1474887501214
### 开发过程
1. 配置默认启动页面
在app.json文件修改注册页面的顺序,把“pages/topics/topics” 放在第一位,就会自动把topics.wxml 显示默认启动
<pre>
{
"pages":[
"pages/topics/topics",
"pages/detail/detail",
"pages/login/login",
"pages/index/index",
"pages/logs/logs"
]
}
</pre>
2. 配置tabBar
tabBar 是一个数组,只能配置最少2个、最多5个 tab,tab 按数组的顺序排序。
<pre>
"tabBar":{
"color":"#444",
"selectedColor":"#80bd01",
"backgroundColor":"#fff",
"borderStyle":"white",
"list":[{
"pagePath":"pages/topics/topics",
"text":"首页",
"iconPath":"images/bar/CNode.png",
"selectedIconPath":"images/bar/CNodeHL.png"
},{
"pagePath":"pages/index/index",
"text":"我的",
"iconPath":"images/bar/ME.png",
"selectedIconPath":"images/bar/MEHL.png"
}]
}
</pre>
3. window 设置
具体看文档https://mp.weixin.qq.com/debug/wxadoc/dev/framework/config.html?t=1475052056717
4. 简单封装wx.request(OBJECT)
<pre>
// get请求方法
function fetchGet(url, callback) {
// return callback(null, top250)
wx.request({
url: url,
header: { 'Content-Type': 'application/json' },
success (res) {
callback(null, res.data)
},
fail (e) {
console.error(e)
callback(e)
}
})
}
// post请求方法
function fetchPost(url, data, callback) {
wx.request({
method: 'POST',
url: url,
data: data,
success (res) {
callback(null, res.data)
},
fail (e) {
console.error(e)
callback(e)
}
})
}
module.exports = {
// METHOD
fetchGet: fetchGet,
fetchPost: fetchPost
}
</pre>
5. 滚动底部加载下一页
使用了小程序自带的scroll-view组件
![编辑器截图](./screenshots/2.png)
```bash
<!--列表list组件 -->
<template name="list">
<scroll-view class="scroll-posts-list" style="height:100%" scroll-y="true" bindscrolltolower="lower">
<view class="postslist">
<block wx:for="{{postsList}}">
<view class="posts-list">
<navigator url="/pages/detail/detail?id={{item.id}}">
<view class="posts-list-info" index="{{index}}">
<image class="userimg" src="{{item.author.avatar_url}}" />
<view class="item-box">
<view class="userinfo">
<text class="username">{{item.author.loginname}}</text>
<text class="time">{{item.last_reply_at}}</text>
</view>
<view class="posts-title">
<view class="posts-tag hot" wx:if="{{item.top === true}}">置顶</view>
<view class="posts-tag" wx:if="{{item.good === true}}">精华</view>
<text>{{item.title}}</text>
</view>
</view>
</view>
<view class="bar-info">
<view class="bar-info-item">
<image class="bar-info-item-icon" src="/images/icon/reply.png"></image>
<view class="bar-info-item-number">{{item.reply_count}}</view>
</view>
<view class="bar-info-item">
<image class="bar-info-item-icon" src="/images/icon/visit.png"></image>
<view class="bar-info-item-number">{{item.visit_count}}</view>
</view>
<view class="bar-info-item2" wx:if="{{item.tab === 'good'}}">
<image class="bar-info-item-icon" src="/images/icon/type.png"></image>
<view class="bar-info-item-number">精华</view>
</view>
<view class="bar-info-item2" wx:if="{{item.tab === 'share'}}">
<image class="bar-info-item-icon" src="/images/icon/type.png"></image>
<view class="bar-info-item-number">分享</view>
</view>
<view class="bar-info-item2" wx:if="{{item.tab === 'ask'}}">
<image class="bar-info-item-icon" src="/images/icon/type.png"></image>
<view class="bar-info-item-number">问答</view>
</view>
<view class="bar-info-item2" wx:if="{{item.tab === 'job'}}">
<image class="bar-info-item-icon" src="/images/icon/type.png"></image>
<view class="bar-info-item-number">招聘</view>
</view>
</view>
</navigator>
</view>
</block>
</view>
</scroll-view>
<loading class="loading" hidden="{{hidden}}">
<text class="loading-font">加载中...</text>
</loading>
</template>
```
```bash
<!-- topics.wxml -->
<import src="../common/nav.wxml"/>
<import src="../common/list.wxml"/>
<view class="page topics">
<template is="nav" data="{{ navList, activeIndex }}"/>
<template is="list" data="{{ postsList, hidden }}"/>
</view>
```
滚动区的最大的父级层要设置height: 100%; 不然无法检测滚动事件
也不知道是不是我布局的原因,我这里是一定要这样设置的
```bash
.topics{
height: 100%;
overflow: hidden;
}
```
```bash
// 滑动底部加载
lower: function() {
console.log('滑动底部加载', new Date());
var that = this;
that.setData({
page: that.data.page + 1
});
if (that.data.tab !== 'all') {
this.getData({tab: that.data.tab, page: that.data.page});
} else {
this.getData({page: that.data.page});
}
}
```
用法
```bash
<scroll-view class="scroll-posts-list" style="height:100%" scroll-y="true" bindscrolltolower="lower">
</scroll-view>
```
### 使用说明
1. 将仓库克隆到本地:
```bash
$ git clone https://github.com/vincentSea/wechat-cnode.git
```
2. 打开`微信Web开放者工具`(注意:必须是`0.9.092300`版本)
3. 选择`添加项目`,填写或选择相应信息
- AppID:点击右下角`无AppID`
- 项目名称:随便填写,因为不涉及到部署,所以无所谓
- 项目目录:选择刚刚克隆的文件夹
- 点击`添加项目`
### 特别感谢
感谢 coolfish 的项目案例
coolfish的github: https://github.com/coolfishstudio
没有合适的资源?快使用搜索试试~ 我知道了~
小程序源码 cnode社区版 (代码+截图)
共48个文件
png:20个
js:8个
wxml:7个
1.该资源内容由用户上传,如若侵权请联系客服进行举报
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
版权申诉
5星 · 超过95%的资源 0 下载量 127 浏览量
2022-06-19
08:11:22
上传
评论
收藏 7.97MB RAR 举报
温馨提示
小程序源码 cnode社区版 (代码+截图)小程序源码 cnode社区版 (代码+截图)小程序源码 cnode社区版 (代码+截图)小程序源码 cnode社区版 (代码+截图)小程序源码 cnode社区版 (代码+截图)小程序源码 cnode社区版 (代码+截图)小程序源码 cnode社区版 (代码+截图)小程序源码 cnode社区版 (代码+截图)小程序源码 cnode社区版 (代码+截图)小程序源码 cnode社区版 (代码+截图)小程序源码 cnode社区版 (代码+截图)小程序源码 cnode社区版 (代码+截图)小程序源码 cnode社区版 (代码+截图)小程序源码 cnode社区版 (代码+截图)小程序源码 cnode社区版 (代码+截图)小程序源码 cnode社区版 (代码+截图)小程序源码 cnode社区版 (代码+截图)小程序源码 cnode社区版 (代码+截图)小程序源码 cnode社区版 (代码+截图)小程序源码 cnode社区版 (代码+截图)小程序源码 cnode社区版 (代码+截图)小程序源码 cnode社区版 (代码+截图)小程序源码 cnode社区版 (
资源推荐
资源详情
资源评论
收起资源包目录
小程序源码 cnode社区版 (代码+截图).rar (48个子文件)
cnode社区版
demo2.gif 3.95MB
wechat-cnode-master
images
bar
MEHL.png 2KB
CNode.png 1KB
ME.png 2KB
CNodeHL.png 1KB
icon
zan.png 1KB
null.png 4KB
visit.png 1KB
reply.png 1KB
type.png 884B
logo.png 8KB
zanhl.png 1KB
login.png 902B
screenshots
demo2.gif 3.95MB
5.png 42KB
6.png 43KB
2.png 74KB
7.png 11KB
4.png 49KB
8.png 212KB
3.png 50KB
app.json 847B
pages
index
index.js 668B
index.wxss 730B
index.wxml 2KB
logs
logs.js 266B
logs.json 54B
logs.wxml 173B
logs.wxss 106B
common
list.wxml 3KB
nav.wxml 351B
detail
detail.js 3KB
detail.wxss 3KB
detail.wxml 4KB
login
login.wxml 631B
login.wxss 655B
login.js 1KB
topics
topics.wxss 2KB
topics.js 2KB
topics.wxml 241B
.gitignore 649B
app.wxss 2KB
app.js 719B
README.md 8KB
utils
util.js 1KB
api.js 1KB
.gitattributes 378B
8.png 212KB
共 48 条
- 1
金枝玉叶9
- 粉丝: 195
- 资源: 7637
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- JAVA的SpringBoot车险理赔管理系统源码数据库 MySQL源码类型 WebForm
- (源码)基于物联网的温湿度监控系统.zip
- (源码)基于SSM框架的档案管理系统.zip
- C#ASP.NET企业网站信息管理系统源码 CMS源码数据库 SQL2012源码类型 WebForm
- 一个轻量级的分布式日志标记追踪神器,10分钟即可接入,自动对日志打标签完成微服务的链路追踪
- (源码)基于Python和CuPy的浅层神经网络四位数加法预测系统.zip
- (源码)基于Java的心电信号R点标注系统.zip
- (源码)基于SpringBoot和Vue的后台管理系统.zip
- java网络教研室资料管理系统源码数据库 MySQL源码类型 WebForm
- bboss 插件工程,持久层hibernate/hibernate4插件
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功
- 1
- 2
前往页