码迷,mamicode.com
首页 >  
搜索关键字:exports    ( 1360个结果
微信小程序-wxml模板页面逻辑运算
通常在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
在express框架中连接mysql
let mysql=require(`mysql`) //引入相应依赖module.exports={ //导出对象 // config:{ host:`localhost`, //主机名 user:'root', //用户名 password:`123`, //密码 port:3306, //端口 ...
分类:数据库   时间:2020-06-16 23:52:25    阅读次数:108
在express框架中使用连接池连接mysql
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
vue-cli使用proxy代理
module.exports = { publicPath: '/', //项目的公共路径 devServer: { //开发用的服务器配置 proxy: { '/api': { target: 'http://localhost:8091', //这里是目标服务器地址 changeOrigin: ...
分类:其他好文   时间:2020-06-16 23:35:33    阅读次数:186
layui中laydate支持分钟自定义间隔
源码版本 /** 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
vuecli3打包部署 非根目录下 配置vue.config.js publicPath
从 Vue CLI 3.3 起已弃用baseUrl,请使用publicPath。 默认情况下,Vue CLI 会假设你的应用是被部署在一个域名的根路径上,例如 https://www.my-app.com/。如果应用被部署在一个子路径上,你就需要用这个选项指定这个子路径。例如,如果你的应用被部署在 ...
分类:Web程序   时间:2020-06-15 11:47:00    阅读次数:114
vue cli3打包后看不见页面
主要是缺少一个配置 新建一个vue.config.js module.exports = { publicPath: './', outputDir: 'dist', assetsDir: 'static' } ...
分类:其他好文   时间:2020-06-14 14:37:19    阅读次数:72
博客项目实战7 第三方模块实现分页
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
前端测试框架Jest总结
很多前端开源框架都有对应的测试代码,保证框架的稳定性 1.前端自动化测试产生的背景与原理 为了降低上线的bug,使用TypeScript,Flow, Eslint ,StyleLint这些工具可以实现。前端自动化测试工具普及情况不是很好。测试分为单元测试,集成测试和端到端测试。单元测试主要是对一个独 ...
分类:其他好文   时间:2020-06-13 19:24:43    阅读次数:148
Egg.js路由的几种写法、路由重定向、路由分组(路由映射)
一、路由的几种写法 见: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
1360条   上一页 1 ... 9 10 11 12 13 ... 136 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!