摘要: textarea { width: 100%; border: none; resize: none; /* 禁止拖拽大小 */ background: unset;}随内容自适应高度:js:var tt = document.getElementById("textarea");tt.style. 阅读全文
posted @ 2021-09-16 16:34 金刀3691 阅读(294) 评论(0) 推荐(0) 编辑
摘要: nodejs的安装包下载位置 https://nodejs.org/zh-cn/download/ nodejs的安装可以直接到菜鸟教程查看 Node.js安装配置 windows的安装包直接双击安装即可 linux的下载的是 tar.xz 文件 使用命令 tar -xvJf 文件名.tar.xz 阅读全文
posted @ 2021-08-05 11:50 金刀3691 阅读(1616) 评论(0) 推荐(0) 编辑
摘要: 本是搞java开发的,因工作需要开始研究这款由python开发的开源智能聊天机器人软件工程,相关资料会留有相关链接大家自己去查看,这里只是对本人在开发过程中遇到的一些问题进行记录,希望对您的开发会有些帮助,先来看几张效果图吧 参考资料: python的安装、管理以及离线迁移可参考 记录使用conda 阅读全文
posted @ 2021-08-05 11:00 金刀3691 阅读(2232) 评论(0) 推荐(0) 编辑
摘要: 首先下载miniconda可以到这个网站 https://repo.anaconda.com/miniconda/ 去看一看,我使用的是:linux版-Miniconda3-4.3.30-Linux-x86_64.sh 和 windows版-Miniconda3-4.3.30-Windows-x86 阅读全文
posted @ 2021-07-26 15:01 金刀3691 阅读(2202) 评论(0) 推荐(0) 编辑
摘要: 效果展示: waterfall.view.html: <!doctype html> <html> <head> <meta charset="utf-8"> <title></title> <meta name="viewport" content="width=device-width,init 阅读全文
posted @ 2021-07-09 15:00 金刀3691 阅读(173) 评论(0) 推荐(0) 编辑
摘要: 关于vue全局变量的管理可参看 vuex官方文档 此处只是本人在开发过程中的一些记录,方便查阅,希望能给各位带来一些帮助! 全局变量定义: 在目录store下创建目录modules目录然后创建文件config.js: const getDefaultState = () => { sys: {} } 阅读全文
posted @ 2021-07-05 19:09 金刀3691 阅读(3958) 评论(0) 推荐(0) 编辑
摘要: 关于vue的过滤器的解释和使用可参看 vue.js官方文档, 关于vue的自定义事件可参看 vue.js官方文档 此处只是本人在开发过程中的一些记录,方便查阅,希望能给各位带来一些帮助! 首先在filters文件夹下创建index.js文件: const dateFormat = (value, f 阅读全文
posted @ 2021-07-05 17:56 金刀3691 阅读(179) 评论(0) 推荐(0) 编辑
摘要: UploadController.java: package com.example.demo.controller; import com.alibaba.fastjson.JSONObject; import com.example.demo.common.*; import org.apach 阅读全文
posted @ 2021-07-05 17:23 金刀3691 阅读(909) 评论(0) 推荐(0) 编辑
摘要: application.yml # 系统配置 server: # 服务器的HTTP端口,默认为8080 port: 9006 servlet: # 应用的访问路径 context-path: / # 自定义配置 url: ip: 127.0.0.1 port: 8080 protocol: http 阅读全文
posted @ 2021-07-05 16:45 金刀3691 阅读(1324) 评论(0) 推荐(0) 编辑
摘要: 理想很丰满。在实际开发过程中,总是会遇到一些看似很简单很简单但总也是绕不过去的问题。先来说一下这次要说的问题吧(是基于mui的移动端开发):标签页外部(也就是标签页上面)有占位区和搜索框,标签页内部需要上拉加载(或下来刷新)。有人会说了加一个overflow: auto; 或 hoverflow: 阅读全文
posted @ 2021-07-03 18:29 金刀3691 阅读(332) 评论(0) 推荐(0) 编辑