首页
工具
心境语句
相册
建站轨迹
关于
Search
1
微信小程序:计算属性的两种体现方式及应用场景
1,653 阅读
2
Antd Upload 组件上传文件接收数据流并下载
1,176 阅读
3
unlock-music工具介绍
663 阅读
4
[C#]使用dnSpy对目标程序(EXE或DLL)进行反编译修改并编译运行
654 阅读
5
C#插件火车头采集器动态切换代理IP,及自动切换UserAgent
629 阅读
react
typecho
ASP
Centos
MYSQL
PHP
Sql server
Javascript
nodejs
数据采集
.NET
git
编程算法
管理及流程
Vue
微信小程序
android
python
mongodb
登录
Search
标签搜索
kotlin
node-sass
nuxtjs
C#火车头插件
火车头采集器
火车头代理
C#反编译
程序逆向
dnSpy教程
Antd
InputNumber
NPM教程
NPM命令
rrweb教程
git慢
git镜像
vim命令
git命令
网页音乐插件
网页播放器
Elysian
累计撰写
75
篇文章
累计收到
0
条评论
首页
栏目
react
typecho
ASP
Centos
MYSQL
PHP
Sql server
Javascript
nodejs
数据采集
.NET
git
编程算法
管理及流程
Vue
微信小程序
android
python
mongodb
页面
工具
心境语句
相册
建站轨迹
关于
搜索到
75
篇与
Elysian
的结果
2022-07-16
微信小程序父子组件方法调用方法汇总
父组件向子组件传值父组件通过属性传值<childEle childParams="{{params}}"></childEle>子组件通过properties接收:properties: { childParams: { type: String } }子组件调用父组件方法父组件定义方法,childFun是子组件中的方法名,fun是父组件中的方法名。我们通过chidlFun来调用fun。<childEle childParams="{{params}}" bind:childFun="fun"></childEle>父组件方法:childFun(e){ console.log('我是父组件的方法', e) }当点击子组件的按钮执行 clickFun 时调用父组件的方法clickFun(){ this.triggerEvent('childFun');//如果需要传递参数,直接写在triggerEvent的参数里即可 }父组件调用子组件的方法<childEle id="childEle" childParams="{{params}}" bind:childFun="fun"></childEle>父组件的 onReady 生命周期中获取 childEle 元素onReady(){ this.childEle = this.selectComponent('#childEle'); }父组件的点击事件 childF 调用子组件的事件:<view bindtap="childF">我是父组件的点击事件</view>父组件触发子组件的方法:childF(){ this.childEle.foo() }这里的 foo即为子组件的方法。文章转自:https://blog.csdn.net/sinat_33255495/article/details/121113589
2022年07月16日
211 阅读
0 评论
0 点赞
2022-07-06
mongodb在修改数据时,使用原有值更新内容
其实需要时间的内容在其他数据库中很简单,例如mysql如下:update news set click=click+1 where addtime>'2022-01-01';但是,在mongodb中查询了很多update的相关资料,在update方法中,没找到批量通过原有值修改的方法;(mongodb基础薄弱,可能最终还是因为我没找到,以后找到了补上)最终使用的先查询出结果,然后forEach的方式处理了,具体如下:db.集合名.find({这里可以写你的筛选条件}).forEach( function(item){ db.集合名.update( {"_id":item._id}, {"$set": {"CreatedTime":new Date(item.CreatedTime.getTime() + 1*60*60000)}}) })解释:1、为什么不直接用 update 去查询并更新,还要分成两个步骤写?对于这些数据,我是要在原有数据的基础上做修改,也就是【个性化】修改,直接使用update 的话,更新的字段数据都是一样的值参考来源:https://blog.csdn.net/weixin_44282947/article/details/118583626
2022年07月06日
278 阅读
0 评论
0 点赞
2022-06-29
MicroPython-ESP32开发环境搭建
相关工具及文件下载IDE-thonny:https://thonny.org/MicroPython:https://micropython.org/windows-ESP32驱动及其他相关文件:https://gitee.com/panxin1213/micropythontools/环境安装首先要安装thonny,然后安装windows-ESP32驱动,再将下载的micropython对应esp32电路板的烧录进板子中。thonny安装IDE安装很简单,直接下一步下一步就可以了。ESP32,windows驱动安装下载好驱动包后安装与系统版本相关的exe文件就可以了。MicroPython烧录1、打开thonny,选择运行-选择解释器2、在弹开的窗口中,选择thonny使用的解释器,这里使用MicroPython,然后Port部分选择安装好驱动的端口,这里要链接好电路板。3、如果是新的电路板,还没有烧录过环境的时候,需要点击Install or update firmware,烧录micropython解释器进入电路板,如下图所示,烧录环境4、烧录成功后,回显示done,表示成功,如果显示 Timed out waiting for packet header等错误,需要长按住电路板上的boot键,然后再按确定重新烧录。测试运行环境弄好后如下图,可以再thonny上看到对应链接上的电路板micropython环境及电路板上的python文件。
2022年06月29日
102 阅读
0 评论
0 点赞
2022-06-20
利用python和git实现目录文件变更自动备份
前言背景1、主要是突然有一个需要实时备份数据库文件,防止数据丢失的需求,思前想后,发现存在很多方式,例如备份在自己的其他服务器,备份在本地等,最终决定编写一个python脚本用来判断数据库备份文件夹文编改动后通过git提交到github或者gitee代码from watchdog.observers import Observer from watchdog.events import * import time from git import Repo import os def pushgit(ccpath): if(".git" in ccpath): print(1); else: try: dirfile = "C:\\Users\\Administrator\\Documents\\Navicat\\MySQL\\servers\\127.0.0.1\\ddh\\" # code的文件位置,我默认将其存放在根目录下 repo = Repo(dirfile) g = repo.git g.add("--all") g.commit("-m auto update") g.push() print("Successful push!") except : print("error push!") class FileEventHandler(FileSystemEventHandler): def __init__(self): FileSystemEventHandler.__init__(self) def on_moved(self, event): pushgit(event.src_path) if event.is_directory: print("directory moved from {0} to {1}".format(event.src_path,event.dest_path)) else: print("file moved from {0} to {1}".format(event.src_path,event.dest_path)) def on_created(self, event): pushgit(event.src_path) if event.is_directory: print("directory created:{0}".format(event.src_path)) else: print("file created:{0}".format(event.src_path)) def on_deleted(self, event): pushgit(event.src_path) if event.is_directory: print("directory deleted:{0}".format(event.src_path)) else: print("file deleted:{0}".format(event.src_path)) def on_modified(self, event): pushgit(event.src_path) if event.is_directory: print("directory modified:{0}".format(event.src_path)) else: print("file modified:{0}".format(event.src_path)) if __name__ == "__main__": observer = Observer() event_handler = FileEventHandler() observer.schedule(event_handler,"C:\\Users\\Administrator\\Documents\\Navicat\\MySQL\\servers\\127.0.0.1\\ddh\\",True) observer.start() try: while True: time.sleep(1) except KeyboardInterrupt: observer.stop() observer.join()centos7 后端运行脚本命令nohup python3 -u auto_up.py > test.log 2>&1 &写好脚本文件中,将脚本文件加入到开机自动运行里就可以监控更新了。然后如果是备份数据库,则只需要创建数据库自动备份计划,就可以完成了。
2022年06月20日
287 阅读
0 评论
0 点赞
2022-06-07
计算机视觉经典库OpenCV
相关文档OpenCV中文官方文档:http://woshicver.com/OpenCV-Python中文教程:https://www.kancloud.cn/aollo/aolloopencv/269602Github 地址:https://github.com/fendouai/OpenCVTutorials
2022年06月07日
50 阅读
0 评论
0 点赞
1
...
3
4
5
...
15