近年来,越来越多的人选择在移动端购物,这使得移动端购物系统的功能需求和性能复杂度越来越高。传统的购物APP不足以应对购物系统的频繁变化。因此,迫切需要一种灵活、高效、快捷的移动购物系统。开源微信商城小程序源码就是在这样的背景下诞生的。微信小程序具有免安装、占用内存小、成本低、易扩展等特点。随着网络信息的不断增长,数据过载问题推动了个性化推荐技术的发展。本文在文献研究和实践研究的基础上,设计了一个基于个性化推荐的微信商城小程序源码。文章来源:https://www.toymoban.com/news/detail-463242.html
部分源码展示:app.js
演示:xcxyms.top文章来源地址https://www.toymoban.com/news/detail-463242.html
const jsonApi = require('utils/jsonapi-datastore/dist/jsonapi-datastore.js')
require('utils/polyfill.js')
App({
onLaunch: function () {
var that = this
this.store = new(jsonApi.JsonApiDataStore)
this.jsonModel = jsonApi.JsonApiDataStoreModel
this.globalData.code = wx.getStorageSync('code')
this.getUserInfo(function() {
that.postEncryptedData(function(res){
that.globalData.wechatUserType = res.data.wechat_user_type
})
})
this.request({
url: `${that.globalData.API_URL}/manage_features`,
success: function(res) { that.globalData.featureManager = res.data }
})
},
getUserInfo: function (cb) {
var that = this
if(this.globalData.userInfo){
typeof cb == "function" && cb(this.globalData.userInfo)
}else{
wx.login({
success: function (res) {
if (res.code) {
that.globalData.code = res.code
wx.setStorageSync('code', res.code)
wx.getUserInfo({
success: function (res) {
that.globalData.encrypted = {encryptedData: res.
到了这里,关于开源微信商城小程序源码和商城小程序开发的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!