const ctx = wx.createCanvasContext('customCanvas') // 文字自动换行 function fillText(height, text, cb) { var chr = text.split(""); //这个方法是将一个字符串分割成字符串数组 var temp = ""; var row = [];…
URL格式: protocol :// hostname[:port] / path / [;parameters][?query]#fragment [;parameters]没见过 这里就不做相关匹配了 代码: 'use strict'; { // URL地址匹配格式: protocol :// hostname[:port] / path /…
错误的代码: <input id="article_id" name="article_id" type="hidden" value="{{ article.id | default: '0' }}" /> 正确的代码: <input id="article_id" name="article_id" type="hidden" va…
sudo apt install -y python-pip python3-pip 然后用pip命令调用python2的pip pip3命令调用python3的 来自深度科技论坛的@abcfy2 Python3用:sudo pip3 install Django Python2用:sudo pip install Django
二叉排序树或者是一棵空树,或者是具有下列性质的二叉树: (1)若左子树不空,则左子树上所有结点的值均小于它的根结点的值; (2)若右子树不空,则右子树上所有结点的值均大于它的根结点的值; (3)左、右子树也分别为二叉排序树; (4)没有键值相等的节点。 function BinaryTree() { const Node = function (k…
1、安装nodejs: sudo apt install nodejs 2、安装npm sudo apt install npm 3、升级npm sudo npm i -g npm 4、安装n sudo npm i -g n 5、升级node sudo n stable 6、关闭终端,重新打开使用 根据自己需求可省略 3、4、5 步
vue中根据城市的首字母a-z进行排序 先安装 js-pinyin 依赖: npm i --save js-pinyin 然后在组件中引入: import pyjs from 'js-pinyin' export default { async mounted() { let city = [ { name: '北京' }, { name: '上海…
为了与后端数据不进行耦合,对接口返回数据进行映射处理。 使用map() 方法处理 map() 方法创建一个新数组,其结果是该数组中的每个元素都调用一个提供的函数后返回的结果。语法参考 接口得到的数据为 res let r = res.map(item => { return { title: item.name, sex: item.sex …
基于图标来自 element ui ,js原生写法: <template> <div id="BackTop" @click="BackTop"> <i class="el-icon-caret-top"/> </div> </template> <s…
首先在 nuxt.config.js 中配置: module.exports = { // some nuxt config... plugins: [ { src: '~plugins/nuxt-quill-plugin.js', ssr: false } ], // some nuxt config.…
// 倒计时 function countTime(that, e) { if (e == 0) { that.setData({ isGetCode: true }) return } e-- that.setData({ co…