扫二维码与项目经理沟通
我们在微信上24小时期待你的声音
解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流
这篇文章给大家分享的是有关微信小程序实现访问公众号文章的方法的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。
创新互联建站坚持“要么做到,要么别承诺”的工作理念,服务领域包括:成都做网站、成都网站设计、企业官网、英文网站、手机端网站、网站推广等服务,满足客户于互联网时代的相山网站设计、移动媒体设计的需求,帮助企业找到有效的互联网解决方案。努力成为您成熟可靠的网络建设合作伙伴!
主要代码:
为了达到效果,更加具体的demo
效果如下
github地址:https://github.com/wangxiaoting666/weixinlink
weixin.wxml
{{cardTeam.name}} {{cardTeam.count}}
weixin.wxss
.container { padding-top: 0; } .item { width: 100%; height: 220rpx; position: relative; display: flex; margin: 10rpx 10rpx; border-bottom: 1px solid rgb(197, 199, 199); } .item:first-child { margin-top: 0; } .item .remove { width: 60px; height: 100%; background-color: red; position: absolute; top: 0; right: -60px; display: flex; justify-content: center; align-items: center; } .item .number-wrapper { height: 100%; padding-top: 40rpx; flex-direction: column; justify-content: space-between; } .item .ok { width: 60px; height: 100%; padding-right: 20rpx; display: flex; justify-content: center; align-items: center; background-color: #98f5ff; } .item .img { width: 150rpx; height: 150rpx; padding: 20rpx; } .number-wrapper .name { margin: 10rpx 10rpx 10rpx 10rpx; font-size: 39rpx; overflow: hidden; } .number-wrapper .count-wrapper { display: flex; align-items: center; margin-left: 10rpx; font-size: 25rpx; } .number-wrapper .count-wrapper .decrease-btn { font-size: 30rpx; } .number-wrapper .count-wrapper .increase-btn { font-size: 30rpx; } .number-wrapper .count-wrapper .count { margin: 0 1rpx 0 1rpx; font-size: 30rpx; } .number-wrapper .price-wrapper .people { margin-left: 250rpx; font-size: 30rpx; } /* 搜索框样式 */ .view-search { display: flex; flex-direction: row; height: 70rpx; margin: 20rpx; padding: 5rpx; border: 1px #e4e2e2 solid; border-width: thin; align-items: center; } .input { flex: 1; height: 60rpx; } .input-placeholder { color: #999; } .button { width: 60rpx; height: 60rpx; }
weixin.js
//index.js //获取应用实例 var app = getApp(); var cardTeams; Page({ data: { cardTeams: [{ "viewid": "1", "imgsrc": "../../images/win/1.jpg", "price": "¥1245", "count": "一个40岁老码农的总结,", "name": "一个40岁老码农的总结,奋斗", }, { "viewid": "2", "imgsrc": "../../images/win/2.jpg", "price": "¥2345", "count": "小公司打杂三年,意外拿到", "name": "小公司打杂三年,意外拿到美", }, { "viewid": "3", "imgsrc": "../../images/win/3.jpg", "price": "¥2345", "count": "作为一个有追求的前端程序媛作", "name": "作为一个有追求的前端程序媛", }, { "viewid": "4", "imgsrc": "../../images/win/4.jpg", "price": "¥2345", "count": "女程序媛面试总结:我", "name": "女程序媛面试总结:我是这", }, { "viewid": "5", "imgsrc": "../../images/win/5.jpg", "price": "¥2345", "count": "前端工作那些年,怎么避?", "name": "前端工作那些年,怎么避免", } ] }, //事件处理函数 bindViewTap: function() { wx.navigateTo({ url: '../weixinlink/weixinlink' }) }, onLoad: function() { console.log('onLoad:' + app.globalData.domain) } })
文章界面
weixinlink.wxml
注意:
小程序要和公众号关联,链接才可以打开。
感谢各位的阅读!关于“微信小程序实现访问公众号文章的方法”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!
我们在微信上24小时期待你的声音
解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流