图片压缩上传

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70

Odoo自定义模块开发

开发一个模块 zerone_books 创建自定义模块 在自定义文件目录 custom_addons中创建 zerone_books模块 1 python odoo-bin scaffold zerone_books custom_addons 建立数据模型 新建编辑 zerone_book.py 1

Require与Import区别

Node.js 使用 CommonJS 模块系统,而在浏览器中,则还正在实现 ES 模块标准。 在实践中,这意味着在 Node.js 中使用 require() ,而在浏览器中则使用 import 。 遵循的规范 1、require 是

Vue中文件下载功能实现

1、需求:页面中点击下载excel文件 2、实现代码a(后端未开启token验证可用) 1 2 3 4 5 6 7 // mian.js文件中 import axios from 'axios' Vue.prototype.$http = axios axios.interceptors.request.use(function (config) {

面试中的一些手写代码

手写call、apply、bind函数 call实现 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 // 实现 Function.prototype.myCall = function(context) { if(typeof context === 'undefined' || context === null) { context = window } context.fn = this let args = [...arguments].slice(1)