上一页 1 2 3 4 5 6 7 ··· 11 下一页
  2021年2月24日
摘要: 参考链接:https://blog.csdn.net/ansheng02/article/details/83743848 wxml <view class="form_section"> <view class="form_section_title">密码</view> <view class= 阅读全文
posted @ 2021-02-24 16:07 阿梅M 阅读(471) 评论(0) 推荐(0) 编辑
  2021年1月31日
摘要: floatLayout.js import Taro from '@tarojs/taro' import { View, Image } from '@tarojs/components' // import closeImg from '../../images/icons/close.png' 阅读全文
posted @ 2021-01-31 21:28 阿梅M 阅读(656) 评论(0) 推荐(0) 编辑
  2021年1月30日
摘要: /** * 重写toFixed 四舍六入五取偶 * @param {*} length 截取长度 * @param {*} num 截取数值 * https://blog.csdn.net/qq_38523017/article/details/83989543 */ Vue.prototype.$ 阅读全文
posted @ 2021-01-30 18:12 阿梅M 阅读(859) 评论(0) 推荐(0) 编辑
  2021年1月6日
摘要: 参考地址:https://blog.csdn.net/muou_hang/article/details/108935972?utm_medium=distribute.pc_relevant.none-task-blog-baidujs_title-2&spm=1001.2101.3001.424 阅读全文
posted @ 2021-01-06 09:47 阿梅M 阅读(2063) 评论(0) 推荐(0) 编辑
  2020年10月13日
摘要: 封装通用方法 // 判断是否为JSON格式 Vue.prototype.$isJSON = function (str) { if (typeof str "string") { try { var obj = JSON.parse(str); if (obj && typeof obj "obje 阅读全文
posted @ 2020-10-13 11:00 阿梅M 阅读(3072) 评论(0) 推荐(0) 编辑
  2020年9月24日
摘要: // pages/personal/personal.js /** * 初始化数据库 * 用evn属性可以切换属性 * database({evn:test}) */ const db = wx.cloud.database(); const user = db.collection("user") 阅读全文
posted @ 2020-09-24 23:39 阿梅M 阅读(256) 评论(0) 推荐(0) 编辑
  2020年8月28日
摘要: watermark.js import Vue from "vue"; Vue.directive("watermark", (el, binding) => { (function (str, container, id, font) { setTimeout(function () { var 阅读全文
posted @ 2020-08-28 15:18 阿梅M 阅读(613) 评论(0) 推荐(0) 编辑
  2020年7月16日
摘要: 基础知识一直都是重点考察的内容,包含有HTML(5)、CSS(3)、JavaScript到node、webpack、Vue所有可能考察的知识。 基础知识不仅仅要知道是什么,更要明白怎么用,为什么这么用。死记硬背能应付一时,如果你遇到了想深入聊聊的面试官,死记硬背就没用了。所以每个知识点都要理解透彻, 阅读全文
posted @ 2020-07-16 16:44 阿梅M 阅读(847) 评论(0) 推荐(0) 编辑
  2020年7月13日
摘要: imgSrcReplace(htmlstr) { let that = this; let regex3 = new RegExp(/<img [^>]*src=['"]([^'"]+)[^>]*>/gi); let domainURL = "http://www.baidu.com/"; let 阅读全文
posted @ 2020-07-13 20:41 阿梅M 阅读(2855) 评论(0) 推荐(1) 编辑
  2020年7月3日
摘要: vscode 安装插件: setting.json { // vscode默认启用了根据文件类型自动设置tabsize的选项 "editor.detectIndentation": false, // 重新设定tabsize "editor.tabSize": 2, // 每次保存的时候自动格式化 阅读全文
posted @ 2020-07-03 18:25 阿梅M 阅读(655) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 11 下一页