文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

微信小程序中怎么实现一个计算器功能

2023-06-20 16:39

关注

微信小程序中怎么实现一个计算器功能,很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。

目录结构

第一次进到页面它的目录结构如下:

微信小程序中怎么实现一个计算器功能

需要注意的问题

(1)添加的新页面文件,都需要在app.json中进行配置,否则页面报错。

微信小程序中怎么实现一个计算器功能

(2)工作原理  通过在<view></view>中添加事件 bindtap="btnClick" id="{{n9}}"   相当于click事件。

在js代码中,可以通过this.data.n9获取数据,这些数据的定义都是在js中

微信小程序中怎么实现一个计算器功能

通过在<view id="{{btn_a}}"><view>填写id,在具体的函数中,event.target.id去判断id是多少,进行区分。就可以实现,不同标签的点击,然后进行业务逻辑。如果需要访问数据,则是通过this.data.xx。

计算器的wxml页面

<view class="content">  <view class="xianshi">{{screenNum}}</view>  <view class="anniu">    <view class="item blue" bindtap="btnClick" id="{{n9}}">9</view>    <view class="item blue" bindtap="btnClick" id="{{n8}}">8</view>    <view class="item blue" bindtap="btnClick" id="{{n7}}">7</view>    <view class="item blue" bindtap="btnClick" id="{{na}}">+</view>  </view>   <view class="anniu">    <view class="item blue" bindtap="btnClick" id="{{n6}}">6</view>    <view class="item blue" bindtap="btnClick" id="{{n5}}">5</view>    <view class="item blue" bindtap="btnClick" id="{{n4}}">4</view>    <view class="item blue" bindtap="btnClick" id="{{nb}}">-</view>  </view>   <view class="anniu">    <view class="item blue" bindtap="btnClick" id="{{n3}}">3</view>    <view class="item blue" bindtap="btnClick" id="{{n2}}">2</view>    <view class="item blue" bindtap="btnClick" id="{{n1}}">1</view>    <view class="item blue" bindtap="btnClick" id="{{nc}}">*</view>  </view>   <view class="anniu">    <view class="item blue" bindtap="btnClick" id="{{n0}}">0</view>    <view class="item blue" bindtap="btnClear">AC</view>    <view class="item blue" bindtap="btnJs">=</view>    <view class="item blue" bindtap="btnClick" id="{{nd}}">/</view>  </view></view>
// pages/cal/cal.jsPage({     data: {   n0: 0,   n1: 1,   n2: 2,   n3: 3,   n4: 4,   n5: 5,   n6: 6,   n7: 7,   n8: 8,   n9: 9,   na: '+',   nb: '-',   nc: '*',   nd: '/',   screenNum: 0,   screenStr: 0,   is_num:1  },     onLoad: function (options) {    },     onReady: function () {    },     onShow: function () {    },     onHide: function () {    },     onUnload: function () {    },     onPullDownRefresh: function () {    },     onReachBottom: function () {    },     onShareAppMessage: function () {    },  btnClick:function(event){    //console.log('你按得键是'+event.target.id);    //console.log('上一次' + this.data.is_num);    var op='';    var data=0;    var last_is_num = this.data.is_num;    //这次输入的是什么    if (event.target.id == '9' || event.target.id == '8' || event.target.id == '7' || event.target.id == '6' || event.target.id == '5' || event.target.id == '4' || event.target.id == '3' || event.target.id == '2' || event.target.id == '1' || event.target.id == '0') {      data = event.target.id;      this.setData({ is_num: 1 });    }    if (event.target.id == '+' || event.target.id == '-' || event.target.id == '*' || event.target.id == '/') {      op = event.target.id;      this.setData({ is_num: 0 });    }    if (last_is_num==1){      //如果上一次是数字      if (op == ''){        //这一次是数字        if (this.data.screenNum!=0){          this.setData({ screenNum: this.data.screenNum + data });          this.setData({ screenStr: this.data.screenStr + data });        }else{          this.setData({ screenNum: data});          this.setData({ screenStr: data });        }      }else{        this.setData({ screenNum: this.data.screenNum + op });        this.setData({ screenStr: this.data.screenStr +',' +op+',' });      }    }else{      //上次不是数字      if (data != 0) {        //这一次是数字        this.setData({ screenNum: this.data.screenNum + data });        this.setData({ screenStr: this.data.screenStr + data });      } else {        return;      }    }    //console.log(op+'aaaaa'+data);    //console.log('现在是'+this.data.is_num);    //console.log('screenNum' + this.data.screenNum);    //console.log(this.data.screenStr);  },  btnJs:function(){    console.log(this.data.screenNum);    console.log(this.data.screenStr);    var result=0;    var strs = new Array(); //定义一数组     strs = this.data.screenStr.split(","); //字符分割    for (var i = 0; i < strs.length; i++) {      //console.log(strs[i] + i); //分割后的字符输出      if (strs[i]=='+'){        result = parseInt(strs[i - 1]) + parseInt(strs[i+1]);      }      if (strs[i] == '-') {        result = strs[i - 1] - strs[i + 1];      }      if (strs[i] == '*') {        result = strs[i - 1] * strs[i + 1];      }      if (strs[i] == '/') {        result = strs[i - 1] / strs[i + 1];      }        }    console.log('result:'+result);    this.setData({ screenNum: result});    this.setData({ screenStr: result });      },  btnClear:function(){    //把标记恢复成默认状态    this.setData({ screenNum: 0 });    this.setData({ screenStr: 0 });    this.setData({ is_num: 1 });        }})

看完上述内容是否对您有帮助呢?如果还想对相关知识有进一步的了解或阅读更多相关文章,请关注编程网行业资讯频道,感谢您对编程网的支持。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯