用uniCloud开发了一个性格测试小程序,已经完美发布

简介: 最近研究了uniCloud,并用uniCloud开发了一个性格测试小程序,已经发布到服务器,完美的发布到抖音,在抖音可以搜索到该小程序。

最近研究了uniCloud,并用uniCloud开发了一个性格测试小程序,已经发布到服务器,完美的发布到抖音,在抖音可以搜索到该小程序。源码和视频教程都开源给大家了。


视频的教程放在b站了,希望下坡伙伴,给个三连:


微信图片_20221009221720.png


https://www.bilibili.com/video/BV19u411z7Jr?spm_id_from=333.999.0.0


一,什么是uniCloud:


uniCloud是uni-app的云开发库,是 DCloud 联合阿里云、腾讯云,为开发者提供的基于 serverless 模式和 js 编程的云开发平台。


uniCloud基本抹平了不同云厂商的差异,如果你熟悉mongoDB,那么就很容易上手了!


现在用uniCloud可以大大的提高开发的效率,而且可以降低运维方面的成本,因为现在serverless还处于免费阶段。


当然也有很多的缺点,新手上手的话不是很快,很多东西也不支持,例如删除数据,竟然还要去调api。


最近小孟和老王研究了下,感觉还是可以搞的,于是就测试并发布了整个通用的版本,发布到了抖音,这个大家可以搞一下,抖音的流量你懂的,但是我们现在对赚钱不感兴趣。所以有熊伙伴想搞的,可以拿去源码学习,但是不要商用和贩卖!


二,系统界面截图:


微信图片_20221009221730.png


微信图片_20221009221734.png


微信图片_20221009221737.png


微信图片_20221009221740.png


微信图片_20221009221745.png


微信图片_20221009221748.png


微信图片_20221009221752.png


微信图片_20221009221756.png


微信图片_20221009221800.png


微信图片_20221009221804.png


微信图片_20221009221808.png


微信图片_20221009221812.png



三,核心代码演示:


<template>
  <view class="center">
  <view class="userInfo" @click.capture="toUserInfo">
    <uni-file-picker v-if="userInfo.avatar_file" v-model="userInfo.avatar_file"
    fileMediatype="image" :del-icon="false" return-type="object" :image-styles="listStyles" disablePreview
    disabled />
    <image v-else class="logo-img" src="/static/uni-center/defaultAvatarUrl.png"></image>
    <view class="logo-title">
    <text class="uer-name">{{userInfo.nickname||userInfo.username||userInfo.mobile||'未登录'}}</text>
    </view>
  </view>
  <uni-list class="center-list" v-for="(sublist , index) in ucenterList" :key="index">
    <uni-list-item v-for="(item,i) in sublist" :title="item.title" link :rightText="item.rightText" :key="i"
    :clickable="true" :to="item.to" @click="ucenterListClick(item)" :show-extra-icon="true"
    :extraIcon="{type:item.icon,color:'#999'}">
    <view v-if="item.showBadge" class="item-footer" slot="footer">
      <text class="item-footer-text">{{item.rightText}}</text>
      <view class="item-footer-badge"></view>
    </view>
    </uni-list-item>
  </uni-list>
  </view>
</template>
<script>
  import {
  mapGetters,
  mapMutations
  } from 'vuex';
  import checkUpdate from '@/uni_modules/uni-upgrade-center-app/utils/check-update';
  import callCheckVersion from '@/uni_modules/uni-upgrade-center-app/utils/call-check-version';
  import uniShare from 'uni_modules/uni-share/js_sdk/uni-share.js';
  const db = uniCloud.database();
  export default {
  data() {
    return {
    ucenterList: [
      [{
      "title": '问题与反馈',
      "to": '/uni_modules/uni-feedback/pages/uni-feedback/uni-feedback',
      "icon": "help"
      }, {
      "title": '设置',
      "to": '/pages/ucenter/settings/settings',
      "icon": "gear"
      }],
      [{
      "title": '关于',
      "to": '/pages/ucenter/about/about',
      "icon": "info"
      }]
    ],
    listStyles: {
      "height": "150rpx", // 边框高度
      "width": "150rpx", // 边框宽度
      "border": { // 如果为 Boolean 值,可以控制边框显示与否
      "color": "#eee", // 边框颜色
      "width": "1px", // 边框宽度
      "style": "solid", // 边框样式
      "radius": "100%" // 边框圆角,支持百分比
      }
    }
    }
  },
  onLoad() {
    //#ifdef APP-PLUS
    this.ucenterList[this.ucenterList.length - 2].unshift({
    title: '检查更新',
    rightText: this.appVersion.version + '-' + this.appVersion.versionCode,
    event: 'checkVersion',
    icon: 'loop',
    showBadge: this.appVersion.hasNew
    })
    //#endif
  },
  computed: {
    ...mapGetters({
    userInfo: 'user/info',
    login: 'user/hasLogin'
    })
    // #ifdef APP-PLUS
    ,
    appVersion() {
    return getApp().appVersion
    }
    // #endif
    ,
    appConfig() {
    return getApp().globalData.config
    }
  },
  methods: {
    ...mapMutations({
    setUserInfo: 'user/login'
    }),
    toSettings() {
    uni.navigateTo({
      url: "/pages/ucenter/settings/settings"
    })
    },
    /**
    * 个人中心项目列表点击事件
    */
    ucenterListClick(item) {
    if (!item.to && item.event) {
      this[item.event]();
    }
    },
    async checkVersion() {
    let res = await callCheckVersion()
    console.log(res);
    if (res.result.code > 0) {
      checkUpdate()
    } else {
      uni.showToast({
      title: res.result.message,
      icon: 'none'
      });
    }
    },
    toUserInfo() {
    uni.navigateTo({
      url: '/pages/ucenter/userinfo/userinfo'
    })
    },
    /**
    * 去应用市场评分
    */
    gotoMarket() {
    // #ifdef APP-PLUS
    if (uni.getSystemInfoSync().platform == "ios") {
      // 这里填写appstore应用id
      let appstoreid = this.appConfig.marketId.ios; // 'id1417078253';
      plus.runtime.openURL("itms-apps://" + 'itunes.apple.com/cn/app/wechat/' + appstoreid + '?mt=8');
    }
    if (uni.getSystemInfoSync().platform == "android") {
      var Uri = plus.android.importClass("android.net.Uri");
      var uri = Uri.parse("market://details?id=" + this.appConfig.marketId.android);
      var Intent = plus.android.importClass('android.content.Intent');
      var intent = new Intent(Intent.ACTION_VIEW, uri);
      var main = plus.android.runtimeMainActivity();
      main.startActivity(intent);
    }
    // #endif
    },
    async share() {
    let {result} = await uniCloud.callFunction({
      name: 'uni-id-cf',
      data: {
      action: 'getUserInviteCode'
      }
    })
    console.log(result);
    let myInviteCode = result.myInviteCode || result.userInfo.my_invite_code
    console.log(myInviteCode);
    let {
      appName,
      logo,
      company,
      slogan
    } = this.appConfig.about
    // #ifdef APP-PLUS
    uniShare({
      content: { //公共的分享类型(type)、链接(herf)、标题(title)、summary(描述)、imageUrl(缩略图)
      type: 0,
      href: this.appConfig.h5.url +
        `/#/pages/ucenter/invite/invite?code=${myInviteCode}`,
      title: appName,
      summary: slogan,
      imageUrl: logo + '?x-oss-process=image/resize,m_fill,h_100,w_100' //压缩图片解决,在ios端分享图过大导致的图片失效问题
      },
      menus: [{
        "img": "/static/app-plus/sharemenu/wechatfriend.png",
        "text": "微信好友",
        "share": {
        "provider": "weixin",
        "scene": "WXSceneSession"
        }
      },
      {
        "img": "/static/app-plus/sharemenu/wechatmoments.png",
        "text": "",
        "share": {
        "provider": "weixin",
        "scene": "WXSenceTimeline"
        }
      },
      {
        "img": "/static/app-plus/sharemenu/weibo.png",
        "text": "微博",
        "share": {
        "provider": "sinaweibo"
        }
      },
      {
        "img": "/static/app-plus/sharemenu/qq.png",
        "text": "QQ",
        "share": {
        "provider": "qq"
        }
      },
      {
        "img": "/static/app-plus/sharemenu/copyurl.png",
        "text": "复制",
        "share": "copyurl"
      },
      {
        "img": "/static/app-plus/sharemenu/more.png",
        "text": "更多",
        "share": "shareSystem"
      }
      ],
      cancelText: "取消分享",
    }, e => { //callback
      console.log(e);
    })
    // #endif
    }
  }
  }
</script>
<style>
  /* #ifndef APP-PLUS-NVUE */
  page {
  background-color: #f8f8f8;
  }
  /* #endif*/
  .center {
  flex: 1;
  flex-direction: column;
  background-color: #f8f8f8;
  }
  .userInfo {
  width: 750rpx;
  padding: 20rpx;
  padding-top: 50px;
  background-image: url(../../static/uni-center/headers.png);
  flex-direction: column;
  align-items: center;
  }
  .logo-img {
  width: 150rpx;
  height: 150rpx;
  border-radius: 150rpx;
  }
  .logo-title {
  flex: 1;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  }
  .uer-name {
  height: 100rpx;
  line-height: 100rpx;
  font-size: 38rpx;
  color: #FFFFFF;
  }
  .center-list {
  margin-bottom: 30rpx;
  background-color: #f9f9f9;
  }
  .center-list-cell {
  width: 750rpx;
  background-color: #007AFF;
  height: 40rpx;
  }
  .grid {
  background-color: #FFFFFF;
  margin-bottom: 6px;
  }
  .uni-grid .text {
  font-size: 30rpx;
  height: 25px;
  line-height: 25px;
  color: #817f82;
  }
  .uni-grid .item /deep/ .uni-grid-item__box {
  justify-content: center;
  align-items: center;
  }
  /*修改边线粗细示例*/
  /* #ifndef APP-NVUE */
  .center-list /deep/ .uni-list--border:after {
  -webkit-transform: scaleY(0.2);
  transform: scaleY(0.2);
  margin-left: 80rpx;
  }
  .center-list /deep/ .uni-list--border-top,
  .center-list /deep/ .uni-list--border-bottom {
  display: none;
  }
  /* #endif */
  .item-footer {
  flex-direction: row;
  align-items: center;
  }
  .item-footer-text {
  color: #999;
  font-size: 24rpx;
  padding-right: 10rpx;
  }
  .item-footer-badge {
  width: 20rpx;
  height: 20rpx;
  /* #ifndef APP-NVUE */
  border-radius: 50%;
  /* #endif */
  /* #ifdef APP-NVUE */
  border-radius: 10rpx;
  /* #endif */
  background-color: #DD524D;
  }
</style>


<script>
 import uQRCode from './uqrcode.js'
 export default {
  props: {
   cid: {
    type: String,
    default(){
     return Date.now()+Math.random()+'';
    }
   },
   text: {
    type: String,
    required: true
   },
   size: {
    type: Number,
    default: uni.upx2px(200)
   },
   margin: {
    type: Number,
    default: 0
   },
   backgroundColor: {
    type: String,
    default: '#ffffff'
   },
   foregroundColor: {
    type: String,
    default: '#000000'
   },
   backgroundImage: {
    type: String
   },
   logo: {
    type: String
   },
   makeOnLoad: {
    type: Boolean,
    default: false
   }
  },
  data() {
   return {
   }
  },
  mounted() {
   if (this.makeOnLoad) {
    this.make()
   }
  },
  methods: {
   async make() {
    var options = {
     canvasId: this.cid,
     componentInstance: this,
     text: this.text,
     size: this.size,
     margin: this.margin,
     backgroundColor: this.backgroundImage ? 'rgba(255,255,255,0)' : this.backgroundColor,
     foregroundColor: this.foregroundColor
    }
    var filePath = await this.makeSync(options)
    if (this.backgroundImage) {
     filePath = await this.drawBackgroundImageSync(filePath)
    }
    if (this.logo) {
     filePath = await this.drawLogoSync(filePath)
    }
    this.makeComplete(filePath)
   },
   makeComplete(filePath) {
    this.$emit('makeComplete', filePath)
   },
   drawBackgroundImage(options) {
    var ctx = uni.createCanvasContext(this.cid, this)
    ctx.drawImage(this.backgroundImage, 0, 0, this.size, this.size)
    ctx.drawImage(options.filePath, 0, 0, this.size, this.size)
    ctx.draw(false, () => {
     uni.canvasToTempFilePath({
      canvasId: this.cid,
      success: res => {
       options.success && options.success(res.tempFilePath)
      },
      fail: error => {
       options.fail && options.fail(error)
      }
     }, this)
    })
   },
   async drawBackgroundImageSync(filePath) {
    return new Promise((resolve, reject) => {
     this.drawBackgroundImage({
      filePath: filePath,
      success: res => {
       resolve(res)
      },
      fail: error => {
       reject(error)
      }
     })
    })
   },
   fillRoundRect(ctx, r, x, y, w, h) {
    ctx.save()
    ctx.translate(x, y)
    ctx.beginPath()
    ctx.arc(w - r, h - r, r, 0, Math.PI / 2)
    ctx.lineTo(r, h)
    ctx.arc(r, h - r, r, Math.PI / 2, Math.PI)
    ctx.lineTo(0, r)
    ctx.arc(r, r, r, Math.PI, Math.PI * 3 / 2)
    ctx.lineTo(w - r, 0)
    ctx.arc(w - r, r, r, Math.PI * 3 / 2, Math.PI * 2)
    ctx.lineTo(w, h - r)
    ctx.closePath()
    ctx.setFillStyle('#ffffff')
    ctx.fill()
    ctx.restore()
   },
   drawLogo(options) {
    var ctx = uni.createCanvasContext(this.cid, this)
    ctx.drawImage(options.filePath, 0, 0, this.size, this.size)
    var logoSize = this.size / 4
    var logoX = this.size / 2 - logoSize / 2
    var logoY = logoX
    var borderSize = logoSize + 10
    var borderX = this.size / 2 - borderSize / 2
    var borderY = borderX
    var borderRadius = 5
    this.fillRoundRect(ctx, borderRadius, borderX, borderY, borderSize, borderSize)
    ctx.drawImage(this.logo, logoX, logoY, logoSize, logoSize)
    ctx.draw(false, () => {
     uni.canvasToTempFilePath({
      canvasId: this.cid,
      success: res => {
       options.success && options.success(res.tempFilePath)
      },
      fail: error => {
       options.fail && options.fail(error)
      }
     }, this)
    })
   },
   async drawLogoSync(filePath) {
    return new Promise((resolve, reject) => {
     this.drawLogo({
      filePath: filePath,
      success: res => {
       resolve(res)
      },
      fail: error => {
       reject(error)
      }
     })
    })
   },
   async makeSync(options) {
    return new Promise((resolve, reject) => {
     uQRCode.make({
      canvasId: options.canvasId,
      componentInstance: options.componentInstance,
      text: options.text,
      size: options.size,
      margin: options.margin,
      backgroundColor: options.backgroundColor,
      foregroundColor: options.foregroundColor,
      success: res => {
       resolve(res)
      },
      fail: error => {
       reject(error)
      }
     })
    })
   }
  }
 }
</script>



目录
打赏
0
1
0
0
675
分享
相关文章
【02】写一个注册页面以及配置打包选项打包安卓apk测试—开发完整的社交APP-前端客户端开发+数据联调|以优雅草商业项目为例做开发-flutter开发-全流程-商业应用级实战开发-优雅草央千澈
【02】写一个注册页面以及配置打包选项打包安卓apk测试—开发完整的社交APP-前端客户端开发+数据联调|以优雅草商业项目为例做开发-flutter开发-全流程-商业应用级实战开发-优雅草央千澈
【02】写一个注册页面以及配置打包选项打包安卓apk测试—开发完整的社交APP-前端客户端开发+数据联调|以优雅草商业项目为例做开发-flutter开发-全流程-商业应用级实战开发-优雅草央千澈
uniapp跨平台框架,陪玩系统并发性能测试,小程序源码搭建开发解析
多功能一体游戏陪练、语音陪玩系统的开发涉及前期准备、技术选型、系统设计与开发及测试优化。首先,通过目标用户分析和竞品分析明确功能需求,如注册登录、预约匹配、实时语音等。技术选型上,前端采用Uni-app支持多端开发,后端选用PHP框架确保稳定性能,数据库使用MySQL保证数据一致性。系统设计阶段注重UI/UX设计和前后端开发,集成WebSocket实现语音聊天。最后,通过功能、性能和用户体验测试,确保系统的稳定性和用户满意度。
10个必备Python调试技巧:从pdb到单元测试的开发效率提升指南
在Python开发中,调试是提升效率的关键技能。本文总结了10个实用的调试方法,涵盖内置调试器pdb、breakpoint()函数、断言机制、logging模块、列表推导式优化、IPython调试、警告机制、IDE调试工具、inspect模块和单元测试框架的应用。通过这些技巧,开发者可以更高效地定位和解决问题,提高代码质量。
247 8
10个必备Python调试技巧:从pdb到单元测试的开发效率提升指南
|
14天前
|
圈子源码如何打包生成App小程序/开发一个圈子系统软件所需要的费用体现在哪里?
将PHP源码打包成App的过程涉及多个步骤和技术选择。以圈子源码为例,首先明确需求,确定App功能和目标用户群体,并根据需求开发小程序页面,如用户注册、圈子列表等。源码准备阶段确保源码适用于小程序开发,环境配置需安装IDE(如微信开发者工具)及依赖库。最后在IDE中打包小程序并上传至管理平台,通过审核后发布。费用方面,模板开发成本较低,定制开发则更高,具体取决于需求复杂度和第三方服务费用。
47 0
圈子社交app前端+后端源码,uniapp社交兴趣圈子开发,框架php圈子小程序安装搭建
本文介绍了圈子社交APP的源码获取、分析与定制,PHP实现的圈子框架设计及代码编写,以及圈子小程序的安装搭建。涵盖环境配置、数据库设计、前后端开发与接口对接等内容,确保平台的安全性、性能和功能完整性。通过详细指导,帮助开发者快速搭建稳定可靠的圈子社交平台。
电竞陪玩系统架构优化设计,陪玩app如何提升系统稳定性,陪玩小程序平台的测试与监控
电竞陪玩系统架构涵盖前端(React/Vue)、后端(Spring Boot/php)、数据库(MySQL/MongoDB)、实时通信(WebSocket)及其他组件(Redis、RabbitMQ、Nginx)。通过模块化设计、微服务架构和云计算技术优化,提升系统性能与可靠性。同时,加强全面测试、实时监控及故障管理,确保系统稳定运行。
thinkphp+uniapp开发的多端商城系统源码/H5/小程序/APP支持DIY模板直播分销
thinkphp+uniapp开发的多端商城系统源码/H5/小程序/APP支持DIY模板直播分销
14 0
【一步步开发AI运动小程序】十七、如何识别用户上传视频中的人体、运动、动作、姿态?
【云智AI运动识别小程序插件】提供人体、运动、姿态检测的AI能力,支持本地原生识别,无需后台服务,具有速度快、体验好、易集成等优点。本文介绍如何使用该插件实现用户上传视频的运动识别,包括视频解码抽帧和人体识别的实现方法。
uni-app开发AI康复锻炼小程序,帮助肢体受伤患者康复!
近期,多家康复机构咨询AI运动识别插件是否适用于肢力运动受限患者的康复锻炼。本文介绍该插件在康复锻炼中的应用场景,包括康复运动指导、运动记录、恢复程度记录及过程监测。插件集成了人体检测、姿态识别等功能,支持微信小程序平台,使用便捷,安全可靠,帮助康复治疗更加高效精准。
接口测试新选择:Postman替代方案全解析
在软件开发中,接口测试工具至关重要。Postman长期占据主导地位,但随着国产工具的崛起,越来越多开发者转向更适合中国市场的替代方案——Apifox。它不仅支持中英文切换、完全免费不限人数,还具备强大的可视化操作、自动生成文档和API调试功能,极大简化了开发流程。

热门文章

最新文章