前情回顾
Flask后端开发(一)-基础知识和前期准备
针对文件参数值的修改,具体流程如下:
前端传递参数的方式有两种,一种是GET,一种是POST,具体可参考Flask后端开发(一)-基础知识和前期准备
后端接收数据主要使用flask中的request
模块,具体代码如下:
#包导入
from flask import request
#前后端协商好传递数据的名称之后,后端根据参数名进行接收
if request.method == "POST":
userID= str(request.form.get("userID"))
elif request.method == "GET":
userID= str(request.args.get("userID"))
#如果需要额外处理,例如字符串"a,b,c"需要转换为列表["a","b","c"],可以使用split函数
BSD= (request.form.get("BSD")).split(",")
#注:上述是代码片段,而非完整代码,一般后端接收数据写在接口函数中
一般文件包括.txt
、.c
、.log
等文件,其内容读取主要使用python中file
模块的open
函数,具体代码如下:
path= "文件路径"
with open(path, "r",encoding='utf8') as file:
file_content = file.read()
#整个文件内容存储在file_content中
关于file
模块的具体使用,可参考我的这篇博客:【python技巧】文本文件的读写操作。
本项目的一个特殊之处就是需要处理.mlx
文件(实时脚本文件),这是matlab中的一种文件格式,其内容是二进制的,无法直接读取。因此,在本文当中,解决方案是将.mlx
文件手动转换为.m
文件,然后再读取.m
文件的内容(真的很笨蛋,但是有效)。
对于.m文件,则可以按照一般文件的读取方式进行读取。
本项目中还会涉及到表格文件的数据读写,这里使用的是xlrd
模块,具体代码如下:
#包导入
import xlrd
#查找对应文件内容
file_path="文件路径"
#打开表格
wb = xlrd.open_workbook(file_path)
ws = wb.sheet_by_name('Sheet1')
#按行读取,返回给前端一个行列表:
n_rows = ws.nrows#获取行数
for i in range(2,n_rows):#按行读取,进行筛选,第一行是表头,第二行开始是数据
get_value=ws.cell(i,3).value#获取第i行第3列的数据
本项目的需求是修改文件中的对应参数,涉及很多代码行的参数修改,因此,需要根据变量名查找相关位置。
find函数
查找变量名所在的位置,参考博客如下Python find()方法,具体代码如下:# 其中file_content是文件内容,变量名是需要查找的变量名
## 1. 调度类型
start_index_1 = file_content.find(
"simParameters.SchedulingType ="
)
end_index_1 = file_content.find(
"simParameters.NumUEs =",
start_index_1,
) # 这之间修改schedulingtype的取值
## 2. UESpeed
start_index_2 = file_content.find(
"simParameters.UESpeed =", end_index_1
)
end_index_2 = file_content.find(
"% Validate the UE positions",
start_index_2,
)
## 3. max_RB
start_index_3 = file_content.find(
"simParameters.NumRBs =", end_index_2
)
end_index_3 = file_content.find(
"simParameters.SCS =",
start_index_3,
)
## 4. SCS
start_index_4 = file_content.find(
"simParameters.SCS =", end_index_3
)
end_index_4 = file_content.find(
"simParameters.DLCarrierFreq =",
start_index_4,
)
这部分的下标定位情况,可参考我的此篇博客:【python技巧】替换文件中的某几行
# 1. 读取文件
path = "文件路径"
with open(path, "r",encoding='utf-8') as file:
file_content = file.read()
# 2. 定位
start_index_1 = file_content.find("simParameters.UEPosition =")
end_index_1 = file_content.find("simParameters.UESpeed =",start_index_1) # 这之间修改ue_position的取值
start_index_2 = file_content.find("simParameters.Position = ", end_index_1)
end_index_2 = file_content.find("csirsConfig = nrCSIRSConfig", start_index_2)
if (start_index_1 == -1 or end_index_1 ==