通常在utils中创建一个.wxs后缀的文件(例如:fn.wxs) function addition(a,b){ return Number(a)+Number(b); } module.exports = { addition:addition, } 需要逻辑运算的wxml页面 <wxs src ...
分类:
微信 时间:
2020-06-17 14:22:50
阅读次数:
231
let mysql=require(`mysql`) //引入相应依赖module.exports={ //导出对象 // config:{ host:`localhost`, //主机名 user:'root', //用户名 password:`123`, //密码 port:3306, //端口 ...
分类:
数据库 时间:
2020-06-16 23:52:25
阅读次数:
108
const mysql=require(`mysql`)module.exports.sqlpoll=function () { let pool={ config:{ host:`localhost`, user:`root`, password:`123`, port:3306, databas ...
分类:
数据库 时间:
2020-06-16 23:46:30
阅读次数:
154
module.exports = { publicPath: '/', //项目的公共路径 devServer: { //开发用的服务器配置 proxy: { '/api': { target: 'http://localhost:8091', //这里是目标服务器地址 changeOrigin: ...
分类:
其他好文 时间:
2020-06-16 23:35:33
阅读次数:
186
源码版本 /** layui-v2.5.5 MIT License By https://www.layui.com */ 演示效果 使用方式 layui.define(['util', 'laydate'], function (exports) { var $ = layui.$, form = ...
分类:
其他好文 时间:
2020-06-16 12:58:57
阅读次数:
234
从 Vue CLI 3.3 起已弃用baseUrl,请使用publicPath。 默认情况下,Vue CLI 会假设你的应用是被部署在一个域名的根路径上,例如 https://www.my-app.com/。如果应用被部署在一个子路径上,你就需要用这个选项指定这个子路径。例如,如果你的应用被部署在 ...
分类:
Web程序 时间:
2020-06-15 11:47:00
阅读次数:
114
主要是缺少一个配置 新建一个vue.config.js module.exports = { publicPath: './', outputDir: 'dist', assetsDir: 'static' } ...
分类:
其他好文 时间:
2020-06-14 14:37:19
阅读次数:
72
const { Article } = require('../../model/acticle'); const pagination = require('mongoose-sex-page'); module.exports = async(req, res) => { const page ...
分类:
其他好文 时间:
2020-06-13 21:32:41
阅读次数:
71
很多前端开源框架都有对应的测试代码,保证框架的稳定性 1.前端自动化测试产生的背景与原理 为了降低上线的bug,使用TypeScript,Flow, Eslint ,StyleLint这些工具可以实现。前端自动化测试工具普及情况不是很好。测试分为单元测试,集成测试和端到端测试。单元测试主要是对一个独 ...
分类:
其他好文 时间:
2020-06-13 19:24:43
阅读次数:
148
一、路由的几种写法 见:https://eggjs.org/zh-cn/basics/router.html 二、路由重定向 路由内部重定向: module.exports = app => { app.router.get('index', '/home/index', app.controlle ...
分类:
Web程序 时间:
2020-06-12 20:20:34
阅读次数:
150