摘要:
最近在看小程序文档整理下简单的语法场景 <!--index.wxml--> <!-- 模板导入 --> <!-- 于此对应的还有 include 可以将目标文件除了 <template/> <wxs/> 外的整个代码引入,相当于是拷贝到 include 位置 --> <import src="../ 阅读全文
摘要:
1.在根目录创建components文件夹 在components下创建 watermark 文件夹 再在其下面创建page 得到 watermark.js watermark.json watermark.wxml watermark.wxss; 2. 使用规则在相关页面的json配置文件下配置 阅读全文
摘要:
在根目录新建http文件夹 新建 request.js文件 apiConfig.js文件 // request.js文件 const request = { // 将接口参数和公共参数合并 buildParams(params) { // const uToken = wx.getStorageSy 阅读全文
摘要:
研究小程序的路上越走越远....坑很多 很不习惯刚刚开始 在utils文件夹下面新增api.js http.js文件 // http.js module.exports = { http(url, method, params) { // 获取token,自行获取token和签名,token和签名表 阅读全文
摘要:
// pages/test/test.js Page({ /** * 页面的初始数据 */ data: { headerList: [{ name: '表头一', number: 'A201', type: "标准间" }, { name: '表头二', number: 'A202', type: 阅读全文
摘要:
1.首先建立 custom-tab-bar 文件夹 包含 index.js index.json index.wxml // index.js文件Component({ data: { active: 0, list: [ { "url": "/pages/index/index", "icon": 阅读全文
摘要:
1.下载好稳定版的微信开发者工具 2.创建小程序项目文件夹(如:testDemo) 3.建好用开发者工具编译器打开 然后初始化package.josn 执行安装 vant Weapp: npm i @vant/weapp -S --production 勾上增强编译和使用npm模块 接着点击工具构建 阅读全文
摘要:
<!-- * @Description: element ui表格校验 由于最近太多人问这个需要怎么校验所以贴了一个demo供参考 * @Version: 2.0 * @Autor: lhl * @Date: 2020-01-15 11:15:40 * @LastEditors: lhl * @La 阅读全文
摘要:
<!-- * @Description: * @Version: 2.0 * @Autor: lhl * @Date: 2020-01-15 11:15:40 * @LastEditors: lhl * @LastEditTime: xxx --> <template> <div> <el-tabl 阅读全文
摘要:
MongoDB 是什么?MongoDB 是一个基于分布式文件存储的数据库;由 C++ 语言编写 MongoDB做什么?为 WEB 应用提供可扩展的高性能数据存储解决方案 创建数据库文件的存放位置data的目录下,创建一个db文件 D:\MongoDB\data\db (1) 打开cmd命令用Wind 阅读全文