上一页 1 2 3 4 5 6 ··· 12 下一页
摘要: sqlalchemy (奥科密) 封装sql字符串 https://www.cnblogs.com/miaoweiye/p/12660790.html 实际正常使用方式 https://blog.csdn.net/stone0823/article/details/112344065 阅读全文
posted @ 2022-02-15 14:28 whitewall 阅读(40) 评论(0) 推荐(0) 编辑
摘要: String 类 String.length(): 返回字符串的长度。 String.substring(): 返回字符串的子字符串。 String.toUpperCase(): 将字符串转换为大写。 String.toLowerCase(): 将字符串转换为小写。 String.trim(): 去 阅读全文
posted @ 2021-12-20 11:16 whitewall 阅读(30) 评论(0) 推荐(0) 编辑
摘要: 一、VUEX(个人理解是多个vue组件数据共享时使用) vuex文档: https://next.vuex.vuejs.org/ 1、环境准备 (1)安装依赖 npm install vuex --save (2)安装插件 vue ui中安装插件vuex (会新建一个store的文件夹,且main. 阅读全文
posted @ 2021-12-20 11:13 whitewall 阅读(263) 评论(1) 推荐(0) 编辑
摘要: 一、视图组件 模板如下,export default例举了常用的对象。style的scoped属性是为了防止组件之间的样式污染,还有lang属性是预编译相关的东西 <template></template> <script> export default { data() { return {} } 阅读全文
posted @ 2021-12-08 21:50 whitewall 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 一、定义 vue-cli是一个基于vue.js进行快速开发的完整系统1、通过@vue/cli 实现的交互式的项目脚手架2、丰富的官方插件集合3、一套完全图形化的创建和管理vue.js项目的用户界面 二、环境准备 前提,有安装过nodejs1、安装vue https://cn.vuejs.org/v2 阅读全文
posted @ 2021-11-27 17:27 whitewall 阅读(243) 评论(0) 推荐(0) 编辑
摘要: Vue Router官网:https://router.vuejs.org/zh/guide/#html 一、引用库 <script src="https://unpkg.com/vue-router/dist/vue-router.js"></script> 二、定义 (路由) 组件(可以从其他文 阅读全文
posted @ 2021-11-21 22:41 whitewall 阅读(45) 评论(0) 推荐(0) 编辑
摘要: axios官网:http://www.axios-js.com/zh-cn/docs/index.html#axios-request-config-1 axios和ajax的区别:1、理论区别;axios是通过Promise实现对ajax技术的一种封装,就像jquery对ajax的封装一样;aja 阅读全文
posted @ 2021-11-14 22:53 whitewall 阅读(285) 评论(0) 推荐(0) 编辑
摘要: 一、vue的生命周期以及钩子函数 生命周期:https://cn.vuejs.org/v2/guide/instance.html#%E7%94%9F%E5%91%BD%E5%91%A8%E6%9C%9F%E5%9B%BE%E7%A4%BA 钩子函数:个人理解是生命周期中预留的(名称是确定的,当系统 阅读全文
posted @ 2021-11-06 22:26 whitewall 阅读(57) 评论(0) 推荐(0) 编辑
摘要: 一、事件的参数传递 示例为通过按钮删除一行v-for渲染出来的数据 <body> <table id="app" border=""> <tr> <th>id</th> <th>name</th> <th>tester</th> <th>project</th> <th>操作</th> </tr> 阅读全文
posted @ 2021-11-06 13:16 whitewall 阅读(43) 评论(0) 推荐(0) 编辑
摘要: 准备工作: 1、官方文档:https://cn.vuejs.org/v2/guide/ 2、node.js安装,之前学习appium有提到:https://www.cnblogs.com/yinwenbin/p/10853586.html 拷贝项目到mac,遇到问题:first_vue_projec 阅读全文
posted @ 2021-11-01 16:35 whitewall 阅读(79) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 12 下一页