UNIapp实现局域网内在线升级

首先是UNIapp 生成apk

用Hbuilder 进行打包云打包
可以从网站https://www.yunedit.com/reg?goto=cert 使用自有证书,目测比直接使用云证书要快一些。

发布apk 网站

发布内容用IIS发布即可
注意事项中记录如下内容

第一、需要在 iis 的MiMe 中添加apk 的格式,否则无法下载apk 文件到手持机中。 添加方式 打开MIME 点击添加
分别输入 apk application/vnd.android.package-archive 点击保存即可

第二、发布新的apk 的时候,需要修改应用版本号(往大了修改),同时版本号.json 文件中
newVersionCode对应的值,也要和新的应用版本号相同(方便检测更新) newVersionName 中保存的是当前PDA的版本名称
versionDesc 中可以添加修改的内容 appName 需要添加新发布的apk 名称(用于下载对应的文件)

第三、将对应的文件夹发布在iis中,同时要修改uniapp 中的http.js文件
uni.setStorageSync(‘loadVersion’, ‘http://127.0.0.1:8032/’); 修改内部的url

要在IIS中添加.apk文件的MIME类型,可以按照以下步骤操作:

打开IIS管理器,找到服务器,右键选择“属性”。
在打开的属性窗口中,选择“MIME类型”选项卡。
点击“MIME类型”按钮,打开MIME类型设置窗口。
选择“新建”来添加一个新的MIME类型。
在“扩展名”中填写“.apk”,在“MIME类型”中填写“.apk”的MIME类型“application/vnd.android.package-archive”。
点击“确定”保存设置。
重启IIS服务,以使更改生效。
完成以上步骤后,IIS就能够正确识别和处理.apk文件了

版本号.json中的内容为

{"newVersionCode":223,"newVersionName":"V1.2.0","versionDesc":"升级了部分功能","appName":"android_debug.apk"}

uniapp相关代码

结构
upgrade.vue中存在

<template><view class="upgrade-popup"><view class="main"><view class="version">发现新版本{{versionName}}</view><view class="content"><text class="title">更新内容</text><view class="desc" v-html="versionDesc"></view></view><!--下载状态-进度条显示 --><view class="footer" v-if="isStartDownload"><view class="progress-view" :class="{'active':!hasProgress}" @click="handleInstallApp"><!-- 进度条 --><view v-if="hasProgress" style="height: 100%;"><view class="txt">{{percentText}}</view><view class="progress" :style="setProStyle"></view></view><view v-else><view class="btn upgrade force">{{ isDownloadFinish  ? '立即安装' :'下载中...'}}</view></view></view></view><!-- 强制更新 --><view class="footer" v-else-if="isForceUpdate"><view class="btn upgrade force" @click="handleUpgrade">立即更新</view></view><!-- 可选择更新 --><view class="footer" v-else><view class="btn close" @click="handleClose">以后再说</view><view class="btn upgrade" @click="handleUpgrade">立即更新</view></view></view></view>
</template><script>import {downloadApp,installApp} from './upgrade.js'export default {data() {return {isForceUpdate: false, //是否强制更新versionName: '', //版本名称versionDesc: '', //更新说明downloadUrl: '', //APP下载链接isDownloadFinish: false, //是否下载完成hasProgress: false, //是否能显示进度条currentPercent: 0, //当前下载百分比isStartDownload: false, //是否开始下载fileName: '', //下载后app本地路径名称}},computed: {//设置进度条样式,实时更新进度位置setProStyle() {return {width: (510 * this.currentPercent / 100) + 'rpx' //510:按钮进度条宽度}},//百分比文字percentText() {let percent = this.currentPercent;if (typeof percent !== 'number' || isNaN(percent)) return '下载中...'if (percent < 100) return `下载中${percent}%`return '立即安装'}},onLoad(options) {this.init(options)},onBackPress(options) {// 禁用返回if (options.from == 'backbutton') {return true;}},methods: {//初始化获取最新APP版本信息init(options) {let randomNum = Math.random();//模拟接口获取最新版本号,版本号固定为整数const baseurl = uni.getStorageSync('loadVersion')+options.appName+'?V='+randomNum;;console.log('结果为')console.log((baseurl))//模拟接口获取setTimeout(() => {//演示数据请根据实际修改this.versionName = options.versionName; //版本名称this.versionDesc = options.versionDesc; //更新说明this.downloadUrl = baseurl; //下载链接this.isForceUpdate = false; //是否强制更新}, 200)},//更新handleUpgrade() {console.log('Hello UniApp!-----------------------------------------------')uni.getStorage({key: 'loadVersion',success: function (res) {console.log(res.data);}});//requestTask.abort();if (this.downloadUrl) {this.isStartDownload = true//开始下载AppdownloadApp(this.downloadUrl, current => {//下载进度监听this.hasProgress = truethis.currentPercent = current}).then(fileName => {//下载完成this.isDownloadFinish = truethis.fileName = fileNameif (fileName) {//自动安装Appthis.handleInstallApp()}}).catch(e => {console.log(e, 'e')})} else {uni.showToast({title: '下载链接不存在',icon: 'none'})}},//安装apphandleInstallApp() {//下载完成才能安装,防止下载过程中点击if (this.isDownloadFinish && this.fileName) {installApp(this.fileName, () => {//安装成功,关闭升级弹窗uni.navigateBack()})}},//关闭返回handleClose() {uni.navigateBack()},}}
</script><style>page {background: rgba(0, 0, 0, 0.5);/**设置窗口背景半透明*/}
</style>
<style lang="scss" scoped>.upgrade-popup {width: 580rpx;height: auto;position: fixed;top: 50%;left: 50%;transform: translate(-50%, -50%);background: #fff;border-radius: 20rpx;box-sizing: border-box;border: 1px solid #eee;}.header-bg {width: 100%;margin-top: -112rpx;}.main {padding: 10rpx 30rpx 30rpx;box-sizing: border-box;.version {font-size: 36rpx;color: #026DF7;font-weight: 700;width: 100%;text-align: center;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;letter-spacing: 1px;}.content {margin-top: 60rpx;.title {font-size: 28rpx;font-weight: 700;color: #000000;}.desc {box-sizing: border-box;margin-top: 20rpx;font-size: 28rpx;color: #6A6A6A;max-height: 80vh;overflow-y: auto;}}.footer {width: 100%;display: flex;justify-content: center;align-items: center;position: relative;flex-shrink: 0;margin-top: 100rpx;.btn {width: 246rpx;display: flex;justify-content: center;align-items: center;position: relative;z-index: 999;height: 96rpx;box-sizing: border-box;font-size: 32rpx;border-radius: 10rpx;letter-spacing: 2rpx;&.force {width: 500rpx;}&.close {border: 1px solid #E0E0E0;margin-right: 25rpx;color: #000;}&.upgrade {background-color: #026DF7;color: white;}}.progress-view {width: 510rpx;height: 90rpx;display: flex;position: relative;align-items: center;border-radius: 6rpx;background-color: #dcdcdc;display: flex;justify-content: flex-start;padding: 0px;box-sizing: border-box;border: none;overflow: hidden;&.active {background-color: #026DF7;}.progress {height: 100%;background-color: #026DF7;padding: 0px;box-sizing: border-box;border: none;border-top-left-radius: 10rpx;border-bottom-left-radius: 10rpx;}.txt {font-size: 28rpx;position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);color: #fff;}}}}
</style>

upgrade.js

/*** @description H5+下载App* @param downloadUrl:App下载链接* @param progressCallBack:下载进度回调*/
export const downloadApp = (downloadUrl, progressCallBack = () => {}, ) => {return new Promise((resolve, reject) => {//创建下载任务const downloadTask = plus.downloader.createDownload(downloadUrl, {method: "GET"}, (task, status) => {console.log(status,'status')if (status == 200) { //下载成功resolve(task.filename)} else {reject('fail')uni.showToast({title: '下载失败',duration: 1500,icon: "none"});}})//监听下载过程downloadTask.addEventListener("statechanged", (task, status) => {switch (task.state) {case 1: // 开始  break;case 2: //已连接到服务器  break;case 3: // 已接收到数据  let hasProgress = task.totalSize && task.totalSize > 0 //是否能获取到App大小if (hasProgress) {let current = parseInt(100 * task.downloadedSize / task.totalSize); //获取下载进度百分比progressCallBack(current)}break;case 4: // 下载完成       break;}});//开始执行下载downloadTask.start();})}
/*** @description H5+安装APP* @param fileName:app文件名* @param callBack:安装成功回调*/
export const installApp = (fileName, callBack = () => {}) => {//注册广播监听app安装情况onInstallListening(callBack);//开始安装plus.runtime.install(plus.io.convertLocalFileSystemURL(fileName), {}, () => {//成功跳转到安装界面}, function(error) {uni.showToast({title: '安装失败',duration: 1500,icon: "none"});})}
/*** @description 注册广播监听APP是否安装成功* @param callBack:安装成功回调函数*/
const onInstallListening = (callBack = () => {}) => {let mainActivity = plus.android.runtimeMainActivity(); //获取activity//生成广播接收器let receiver = plus.android.implements('io.dcloud.android.content.BroadcastReceiver', {onReceive: (context, intent) => { //接收广播回调  plus.android.importClass(intent);mainActivity.unregisterReceiver(receiver); //取消监听callBack()}});let IntentFilter = plus.android.importClass('android.content.IntentFilter');let Intent = plus.android.importClass('android.content.Intent');let filter = new IntentFilter();filter.addAction(Intent.ACTION_PACKAGE_ADDED); //监听APP安装     filter.addDataScheme("package");mainActivity.registerReceiver(receiver, filter); //注册广播}

home.vue

<template><view><image style="width: 100%;" mode="widthFix" src="/static/swiper1.png"></image><!-- 	<u-swiper height="360rpx" :list="swiperList" :radius="0"></u-swiper> --><view class="home-content"><view class="app-name">WMS手持机系统</view><view class="card-container"><view class="fn-title">基础功能</view><u-grid :border="false" @click="gridClick" col="4"><u-grid-item v-for="(item,index) in fn" :key="index"><view :class="['grid-item-bg','grid-item-bg-'+(index+1)]"><u-icon :name='item.icon' :color="item.color" size="28"></u-icon></view><view class="grid-text">{{item.name}}</view></u-grid-item></u-grid></view><view style="padding:30rpx;padding-top:0;"><vol-alert type="primary"></vol-alert></view></view></view>
</template><script>export default {data() {return {height: 0,swiperList: ['/static/swiper1.png','/static/swiper2.png','/static/swiper3.png'],fn: [{name: "有单据组盘1",icon: '/static/fc.png',path: "/pages/basics/T_In_ReceiptNoticeDetail/T_In_ReceiptNoticeDetail",color: '#EE0000',subPage: true //二级页面}, {name: "手动入库",icon: '/static/fc.png',path: "",color: '#EE0000',subPage: true //二级页面}, {name: "无单据组盘",icon: 'edit-pen-fill',color: '#8B8989',path: "/pages/createbyus/HaveOrderGroup/HaveOrderGroup",subPage: true //二级页面}, {name: "入库计划",icon: '/static/fc.png',path: "/pages/basics/T_In_ReceiptNotice/T_In_ReceiptNotice",color: '#EE0000',subPage: true //二级页面}, {name: "确认出库",icon: '/static/fc.png',path: "/pages/reportvshow/V_OutboundDetail/V_OutboundDetail",color: '#EE0000',subPage: true //二级页面}, {name: "托盘处理",icon: '/static/fc.png',path: "/pages/strategy/DealTrayCURD/DealTrayCURD",color: '#EE0000',subPage: true //二级页面}, {name: "盘点处理",icon: '/static/fc.png',path: "/pages/strategy/T_InventoryCheckDetail/T_InventoryCheckDetail",color: '#EE0000',subPage: true //二级页面}, {name: "出库计划",icon: '/static/flow.png',color: '#EE0000',path: "/pages/basics/T_Out_DeliveryNotice/T_Out_DeliveryNotice",subPage: true //二级页面},{name: "审批流程",icon: '/static/flow.png',color: '#EE0000',path: "/pages/flow/flow",subPage: false //二级页面}, {name: "表单示例",icon: '/static/form.png',color: '#EE0000',path: "/pages/form/form",subPage: true //二级页面},{name: "Table组件",icon: '/static/fc.png',color: '#EE0000',path: "/pages/form/form",subPage: true //二级页面},{name: "菜单列表",icon: '/static/table.png',color: '#EE0000',path: "/pages/menu/menu",subPage: false //二级页面},// {// 	name: "地图导航",// 	icon: '/static/fc.png',// 	color:'#EE0000',// 	path: "/pages/map/map",// 	subPage: true //二级页面// },// //待开发功能// {// 	name: "敬请期待",// 	icon: '/static/fc.png',// 	path: "pages/basics/T_In_ReceiptNotice/T_In_ReceiptNotice",// 	color:'#EE0000',// 	subPage: true //二级页面// },// {// 	name: "敬请期待",// 	icon: '/static/fc.png',// 	color:'#EE0000',// 	path: "",// }],}},onLoad() {var _this = this;// 获取手机状态栏高度uni.getSystemInfo({success: function(data) {// 将其赋值给this_this.height = data.statusBarHeight;}});_this.init();},onReady(){this.checkVersion(1)},onShow() {},methods: {//初始化init() {},//检查版本更新情况checkVersion(indexValue) {var _this = this;let index=0;setTimeout(() => {let randomNum = Math.random();//模拟接口获取最新版本号,版本号固定为整数const baseurl = uni.getStorageSync('loadVersion')+'版本号.json?V='+randomNum;console.log(baseurl)var requestTask = uni.request({url: baseurl, //仅为示例,并非真实接口地址。method:'GET',success: function(res) {index++;console.log(res.data);	const newVersionName =res.data.newVersionName //线上最新版本名const newVersionCode =res.data.newVersionCode; //线上最新版本号const selfVersionCode = Number(uni.getSystemInfoSync().appVersionCode) //当前App版本号console.log(index+'../index/upgrade?versionName='+newVersionName+'&versionDesc='+res.data.versionDesc)console.log(selfVersionCode)console.log(newVersionCode)//线上版本号高于当前,进行在线升级if (selfVersionCode < newVersionCode) {let platform = uni.getSystemInfoSync().platform //手机平台uni.navigateTo({url: '../index/upgrade?versionName='+newVersionName+'&versionDesc='+res.data.versionDesc+'&appName='+res.data.appName})}else{_this.clickUseInfo(indexValue);}},fail :function(res){console.log(res);},complete: ()=> {}});}, 200)},getStyle(item) {return {paddingTop: 20 + 'rpx',background: item.color,padding: '50%',color: "#ffff",'border-radius': '50%',left: '-24rpx'}},gridClick(index) {this.checkVersion(index)},clickUseInfo(index){const item = this.fn[index];console.log(index)if (!item.path) {this.$toast('开发中')return;}//注意下面的跳转方式,一级页面指pages.json中tabBar配置path//具体见uni页面跳转文档if (item.subPage) {//二级页面用navigateTo跳转uni.navigateTo({url: this.fn[index].path})return;}//一级页面uni.switchTab({url: this.fn[index].path})},swiperClick(index) {}}}
</script>
<style lang="less" scoped>.home-content {z-index: 999;position: relative;margin-top: -220rpx;}.app-name {text-align: center;color: #ffff;font-weight: bolder;font-size: 60rpx;top: -40rpx;position: relative;}.card-container {box-shadow: 1px 1px 9px #b9b6b629;margin: 30rpx 30rpx 30rpx 30rpx;border: 1px solid #f1f1f1;border-radius: 10rpx;padding: 26rpx 10rpx 14rpx 10rpx;background: #ffff;.fn-title {font-family: 黑体;font-size: 30rpx;font-weight: bold;//color: #8f9ca2;padding: 4rpx 20rpx 30rpx 20rpx;}.grid-text {padding-top: 8rpx;font-size: 26rpx;color: #626262;padding-bottom: 20rpx;}}.grid-item-bg {border-radius: 50%;width: 86rpx;height: 86rpx;display: flex;align-items: center;justify-content: center;box-shadow: 5px 3px 6px #e0ddddb0;}.grid-item-bg-1 {background-image: linear-gradient(to bottom right, #97caff, #47a1fe);}.grid-item-bg-2 {background-image: linear-gradient(to bottom right, #f8bcbc, #f07e7e);}.grid-item-bg-3 {background-image: linear-gradient(to bottom right, #afb5e6, #808cf0);}.grid-item-bg-4 {background-image: linear-gradient(to bottom right, #98e4e2, #56c3bf);}.grid-item-bg-5 {background-image: linear-gradient(to bottom right, #d1d1d1, #c878e7);}.grid-item-bg-6 {background-image: linear-gradient(to bottom right, #97caff, #47a1fe);}.grid-item-bg-7 {background-image: linear-gradient(to bottom right, #98e4e2, #56c3bf);}.grid-item-bg-8 {background-image: linear-gradient(to bottom right, #afb5e6, #808cf0);}
</style>

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.rhkb.cn/news/271890.html

如若内容造成侵权/违法违规/事实不符,请联系长河编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

JavaWeb-MyBatis(上)

学完项目管理工具Maven后&#xff0c;继续学习MyBatis。我们都知道&#xff0c;JDBC是一个与数据库连接相关的API&#xff0c;最开始学习数据库连接都是从JDBC开始学起&#xff0c;但是其也有缺点&#xff0c;比如硬编码和操作繁琐等等。而今天学习的MyBatis就是专门为简化JDBC…

论文目录3:大模型时代(2023+)

1 instruction tuning & in context learning 论文名称来源主要内容Finetuned Language Models Are Zero-Shot Learners2021 机器学习笔记&#xff1a;李宏毅ChatGPT Finetune VS Prompt_UQI-LIUWJ的博客-CSDN博客 早期做instruction tuning的work MetaICL: Learning to …

K线实战分析系列之十八:十字线——判断行情顶部的有效信号

K线实战分析系列之十八&#xff1a;十字线——判断行情顶部的有效信号 一、十字线二、十字线总结三、三种特殊十字线四、长腿十字线五、墓碑十字线六、蜻蜓十字线七、特殊十字线总结 一、十字线 重要的反转信号 幅度较大的下跌&#xff0c;出现一根十字线&#xff0c;正好是在…

力扣刷题Days13-101对称二叉树(js)

目录 1,题目 2&#xff0c;代码 2.1递归思想 2.2队列--迭代思想 3&#xff0c;学习与总结 1,题目 给你一个二叉树的根节点 root &#xff0c; 检查它是否轴对称。 2&#xff0c;代码 2.1递归思想 return dfs(left.left, right.right) && dfs(left.right, right.l…

Go-知识struct

Go-知识struct 1. struct 的定义1.1 定义字段1.2 定义方法 2. struct的复用3. 方法受体4. 字段标签4.1 Tag是Struct的一部分4.2 Tag 的约定4.3 Tag 的获取 githupio地址&#xff1a;https://a18792721831.github.io/ 1. struct 的定义 Go 语言的struct与Java中的class类似&am…

局域网管理工具

每个组织的业务运营方法都是独一无二的&#xff0c;其网络基础设施也是如此&#xff0c;由于随着超融合基础设施等新计算技术的发展&#xff0c;局域网变得越来越复杂&#xff0c;因此局域网管理也应该如此&#xff0c;组织需要量身定制的局域网管理解决方案&#xff0c;这些解…

【C++】浅谈 vector 迭代器失效 深拷贝问题

目录 前言 一、底层空间改变 【错误版本1】 &#x1f31f;【解答】正确版本 ​ 【错误版本2】 &#x1f31f;【解答】正确版本 二、指定位置元素的删除操作--erase 【错误版本1】 &#x1f31f;【解答】 【错误版本2】 &#x1f31f;【解答】 三、深拷贝问题 前言 迭…

10 事务控制

文章目录 事务控制事务概述事务操作事务四大特性事务隔离级别 事务控制 事务概述 MySQL 事务主要用于处理操作量大&#xff0c;复杂度高的数据。比如说&#xff0c;在人员管理系统中&#xff0c;你删除一个人员&#xff0c;既需要删除人员的基本资料&#xff0c;也要删除和该…

探讨2024年AI辅助研发的趋势

一、引言 随着科技的飞速发展&#xff0c;人工智能&#xff08;AI&#xff09;已经成为当今时代最具变革性的技术之一。AI的广泛应用正在重塑各行各业&#xff0c;其中&#xff0c;AI辅助研发作为科技和工业领域的一大创新热点&#xff0c;正引领着研发模式的深刻变革。从医药…

提醒一下!今年考研的人不要太老实了!!

今年准备计算机考研的同学&#xff0c;别太老实了&#xff01;别人说什么你就信什么 如果你的工作能力不足以支撑找到一个满意的工作&#xff0c;那我建议再沉淀两年&#xff01; 很多同学其实有点眼高手低&#xff0c;在计算机专业&#xff0c;低于1w的工作看不上&#xff0…

KubeSphere平台安装系列之二【Linux单节点部署KubeSphere】(2/3)

**《KubeSphere平台安装系列》** 【Kubernetes上安装KubeSphere&#xff08;亲测–实操完整版&#xff09;】&#xff08;1/3&#xff09; 【Linux单节点部署KubeSphere】&#xff08;2/3&#xff09; 【Linux多节点部署KubeSphere】&#xff08;3/3&#xff09; **《KubeS…

找出单身狗1,2

目录 1. 单身狗12. 单身狗2 1. 单身狗1 题目如下&#xff1a; 思路&#xff1a;一部分人可能会使用对数组排序&#xff0c;遍历数组的方式去找出只出现一次的数字&#xff0c;但这种方法的时间复杂度过高&#xff0c;有时候可能会不满足要求。 有一种十分简便的方法是使用异或…

Libevent的使用及reactor模型

Libevent 是一个用C语言编写的、轻量级的开源高性能事件通知库&#xff0c;主要有以下几个亮点&#xff1a;事件驱动&#xff08; event-driven&#xff09;&#xff0c;高性能;轻量级&#xff0c;专注于网络&#xff0c;不如 ACE 那么臃肿庞大&#xff1b;源代码相当精炼、易读…

OpenHarmony教程指南-自定义通知推送

介绍 本示例主要展示了通知过滤回调管理的功能&#xff0c;使用ohos.notificationManager 接口&#xff0c;进行通知监听回调&#xff0c;决定应用通知是否发送。 效果预览 使用说明 1.在使用本应用时&#xff0c;需安装自定义通知角标应用&#xff1b; 2.在主界面&#xff…

【操作系统概念】 第9章:虚拟内存管理

文章目录 0.前言9.1 背景9.2 按需调页9.2.1 基本概念9.2.2 按需调页的性能 9.3 写时复制9.4 页面置换9.4.1 基本页置换9.4.2 FIFO页置换9.4.3 最优(Optimal)置换9.4.4 LRU&#xff08;Least Recently Used&#xff09;页置换9.4.5 近似LRU页置换9.4.6 页缓冲算法 9.5 帧分配9.5…

Python笔记|基础算数运算+数字类型(1)

重新整理记录一下python的基础知识 基础运算符 、-、*、/ &#xff1b;括号 ()用来分组。 >>>2 2 4 >>>50 - 5*6 20 >>>(50 - 5*6) / 4 5.0 >>>8 / 5 1.6向下取整除法&#xff1a;向下舍入到最接近的整数的数学除法。运算符是 //。比如1…

JVM-虚拟机栈概述

背景&#xff1a;由于跨平台的设计&#xff0c;java指令都是根据栈来设计的。不同平台CPU架构不同&#xff0c;所以不能设计为基于寄存器。 栈是运行时单位&#xff0c;而堆是存储的单位。即&#xff1a;栈解决程序运行的问题&#xff0c;即程序如何执行&#xff0c;或者说如何…

js【详解】event loop(事件循环/事件轮询)

event loop 是异步回调的实现原理 js 代码的执行过程 从前到后&#xff0c;一行一行执行如果某一行执行报错&#xff0c;则停止下面代码的执行先把同步代码执行完&#xff0c;再执行异步 event loop 图解 以下方代码为例&#xff1a; 第1步 将第 1 行代码放入调用栈 将要执行第…

Qt初识 - 编写Hello World的两种方式 | 对象树

目录 一、通过图形化方式&#xff0c;在界面上创建出一个控件 二、通过代码方式&#xff0c;创建Hello World 三、Qt 内存泄漏问题 (一) 对象树 一、通过图形化方式&#xff0c;在界面上创建出一个控件 创建项目后&#xff0c;打开双击forms文件夹中的ui文件&#xff0c;可…

几种常见的python开发工具

​ Python是一种功能强大且易于学习的编程语言&#xff0c;被广泛应用于数据科学、机器学习、Web开发等领域。随着Python在各个领域的应用越来越广泛&#xff0c;越来越多的Python开发工具也涌现出来。但是&#xff0c;对于新手来说&#xff0c;选择一款合适的Python开发工具可…