摘要:
计算机设计省2 ccf测试省3 阅读全文
摘要:
#include <stdio.h>#include <stdlib.h> int isLeapYear(int year) { if ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0) { return 1; // 是闰年 } else 阅读全文
摘要:
什么是架构? 每当我们开发新的项目的时候都会新建一个解决方案,然后在解决方案中搭建N个项目。每个项目之间通过“引用”达到交互的功能,这个过程就可以称之架构,而架构最终的产物则是软件产品。不同的程序员在搭建架构的时候分两种情况:熟悉业务,根据业务进行架构、不熟悉业务,根据自己的理解进行架构。这两种情况 阅读全文
摘要:
好看的排行榜界面 wxml <!--ranklist.wxml--> <view class="container"> <scroll-view class="list" scroll-y bindscrolltolower="{{hasReachBottom}}"> <view wx:for="{ 阅读全文
摘要:
打开快捷键面板 F1打开/关闭工具栏 Ctrl+Shift+T打开/关闭模拟器 Ctrl+Shift+D打开/关闭调试器 Ctrl+Shift+M格式化文件 Shift+Alt+F编译 Ctrl+B刷新 Ctrl+R删除行 Ctrl+Shift+K向上复制行 Shift+Alt+↑向上移动行 Alt 阅读全文
摘要:
按下ctrl加+-键就行了 阅读全文
摘要:
wxml<view> <view class="top"> <view class="center"> <view class="center_top"> <view class="center_img" bindtap="toBaseInfo"> <!-- <image src="../../st 阅读全文
摘要:
不关闭当前页面的跳转,可以通过返回键返回到上一个页面 wx.navigateTo 关闭当前页面跳转到非tarBar页面 wx.redirectTo 关闭当前页面跳转到tarBar页面 wx.switchTab 阅读全文
摘要:
{ min: 0, max: 0, label: "0", color: "#CCE5FF" },{ min: 1, max: 4, label: "1-4", color: "#99C9FF" },{ min: 5, max: 9, label: "5-9", color: "#66AFFF" } 阅读全文
摘要:
wxml页面 <van-field value="{{ identity }}" required clearable label="身份证号" placeholder="请输入身份证号" /> js页面 data: { name:'', id:'', identity:'' } 但是通过this. 阅读全文