位置: IT常识 - 正文

Python开发自定义Web框架(python创建自定义函数)

编辑:rootadmin
Python开发自定义Web框架

推荐整理分享Python开发自定义Web框架(python创建自定义函数),希望有所帮助,仅作参考,欢迎阅读内容。

文章相关热门搜索词:python编写自定义函数,python编写自定义函数,python如何运行自定义函数,python编写自定义函数,python中创建自定义函数的语法规范,python自定义数据操作,python自定义数据操作,python如何运行自定义函数,内容如对您有帮助,希望把文章链接给更多的朋友!

文章目录开发自定义Web框架1.开发Web服务器主体程序2.开发Web框架主体程序3.使用模板来展示响应内容4.开发框架的路由列表功能5.采用装饰器的方式添加路由6.电影列表页面的开发案例开发自定义Web框架

接收web服务器的动态资源请求,给web服务器提供处理动态资源请求的服务。根据请求资源路径的后缀名进行判断:

如果请求资源路径的后缀名是.html则是动态资源请求, 让web框架程序进行处理。 否则是静态资源请求,让web服务器程序进行处理。

1.开发Web服务器主体程序

1、接受客户端HTTP请求(底层是TCP)

# -*- coding: utf-8 -*-# @File : My_Web_Server.py# @author: Flyme awei # @email : 1071505897@qq.com# @Time : 2022/7/24 21:28from socket import *import threading# 开发自己的Web服务器主类class MyHttpWebServer(object): def __init__(self, port): # 创建 HTTP服务的 TCP套接字 server_socket = socket(AF_INET, SOCK_STREAM) # 设置端口号互用,程序退出之后不需要等待,直接释放端口 server_socket.setsockopt(SOL_SOCKET, SO_REUSEADDR, True) # 绑定 ip和 port server_socket.bind(('', port)) # listen使套接字变为了被动连接 server_socket.listen(128) self.server_socket = server_socket # 处理请求函数 @staticmethod # 静态方法 def handle_browser_request(new_socket): # 接受客户端发来的数据 recv_data = new_socket.recv(4096) # 如果没有数据,那么请求无效,关闭套接字,直接退出 if len(recv_data) == 0: new_socket.close() return# 启动服务器,并接受客户端请求 def start(self): # 循环并多线程来接收客户端请求 while True: # accept等待客户端连接 new_socket, ip_port = self.server_socket.accept() print("客户端ip和端口", ip_port) # 一个客户端的请求交给一个线程来处理 sub_thread = threading.Thread(target=MyHttpWebServer.handle_browser_request, args=(new_socket, )) # 设置当前线程为守护线程 sub_thread.setDaemon(True) sub_thread.start() # 启动子线程# Web 服务器程序的入口def main(): web_server = MyHttpWebServer(8080) web_server.start()if __name__ == '__main__': main()

2、判断请求是否是静态资源还是动态资源

# 对接收的字节数据进行转换为字符数据 request_data = recv_data.decode('utf-8') print("浏览器请求的数据:", request_data) request_array = request_data.split(' ', maxsplit=2) # 得到请求路径 request_path = request_array[1] print("请求的路径是:", request_path) if request_path == "/": # 如果请求路径为根目录,自动设置为:/index.html request_path = "/index.html" # 判断是否为:.html 结尾 if request_path.endswith(".html"): "动态资源请求" pass else: "静态资源请求" pass

3、如果静态资源怎么处理?

"静态资源请求" # 根据请求路径读取/static 目录中的文件数据,相应给客户端 response_body = None # 响应主体 response_header = None # 响应头的第一行 response_first_line = None # 响应头内容 response_type = 'test/html' # 默认响应类型 try: # 读取 static目录中相对应的文件数据,rb模式是一种兼容模式,可以打开图片,也可以打开js with open('static'+request_path, 'rb') as f: response_body = f.read() if request_path.endswith('.jpg'): response_type = 'image/webp' response_first_line = 'HTTP/1.1 200 OK' response_header = 'Content-Length:' + str(len(response_body)) + '\r\n' + \ 'Content-Type: ' + response_type + '; charset=utf-8\r\n' + \ 'Date:' + time.strftime('%Y-%m-%d %H:%M:%S', time.localtime()) + '\r\n' + \ 'Server: Flyme awei Server\r\n' # 浏览器读取的文件可能不存在 except Exception as e: with open('static/404.html', 'rb') as f: response_body = f.read() # 响应的主体页面内容 # 响应头 response_first_line = 'HTTP/1.1 404 Not Found\r\n' response_header = 'Content-Length:'+str(len(response_body))+'\r\n' + \ 'Content-Type: text/html; charset=utf-8\r\n' + \ 'Date:' + time.strftime('%Y-%m-%d %H:%M:%S', time.localtime()) + '\r\n' + \ 'Server: Flyme awei Server\r\n' # 最后都会执行的代码 finally: # 组成响应数据发送给(客户端)浏览器 response = (response_first_line + response_header + '\r\n').encode('utf-8') + response_body new_socket.send(response) # 关闭套接字 new_socket.close()

静态资源请求验证:

4、如果动态资源又怎么处理

if request_path.endswith(".html"): "动态资源请求" # 动态资源的处理交给Web框架来处理,需要把请求参数交给Web框架,可能会有多个参数,采用字典结构 params = { 'request_path': request_path } # Web框架处理动态资源请求后,返回一个响应 response = MyFramework.handle_request(params) new_socket.send(response) new_socket.close()

5、关闭Web服务器

new_socket.close()

Web服务器主体框架总代码展示:

# -*- coding: utf-8 -*-# @File : My_Web_Server.py# @author: Flyme awei # @email : 1071505897@qq.com# @Time : 2022/7/24 21:28import sysimport timefrom socket import *import threadingimport MyFramework# 开发自己的Web服务器主类class MyHttpWebServer(object): def __init__(self, port): # 创建 HTTP服务的 TCP套接字 server_socket = socket(AF_INET, SOCK_STREAM) # 设置端口号互用,程序退出之后不需要等待,直接释放端口 server_socket.setsockopt(SOL_SOCKET, SO_REUSEADDR, True) # 绑定 ip和 port server_socket.bind(('', port)) # listen使套接字变为了被动连接 server_socket.listen(128) self.server_socket = server_socket # 处理请求函数 @staticmethod # 静态方法 def handle_browser_request(new_socket): # 接受客户端发来的数据 recv_data = new_socket.recv(4096) # 如果没有数据,那么请求无效,关闭套接字,直接退出 if len(recv_data) == 0: new_socket.close() return # 对接收的字节数据进行转换为字符数据 request_data = recv_data.decode('utf-8') print("浏览器请求的数据:", request_data) request_array = request_data.split(' ', maxsplit=2) # 得到请求路径 request_path = request_array[1] print("请求的路径是:", request_path) if request_path == "/": # 如果请求路径为根目录,自动设置为:/index.html request_path = "/index.html" # 判断是否为:.html 结尾 if request_path.endswith(".html"): "动态资源请求" # 动态资源的处理交给Web框架来处理,需要把请求参数交给Web框架,可能会有多个参数,采用字典结构 params = { 'request_path': request_path } # Web框架处理动态资源请求后,返回一个响应 response = MyFramework.handle_request(params) new_socket.send(response) new_socket.close() else: "静态资源请求" # 根据请求路径读取/static 目录中的文件数据,相应给客户端 response_body = None # 响应主体 response_header = None # 响应头的第一行 response_first_line = None # 响应头内容 response_type = 'test/html' # 默认响应类型 try: # 读取 static目录中相对应的文件数据,rb模式是一种兼容模式,可以打开图片,也可以打开js with open('static'+request_path, 'rb') as f: response_body = f.read() if request_path.endswith('.jpg'): response_type = 'image/webp' response_first_line = 'HTTP/1.1 200 OK' response_header = 'Content-Length:' + str(len(response_body)) + '\r\n' + \ 'Content-Type: ' + response_type + '; charset=utf-8\r\n' + \ 'Date:' + time.strftime('%Y-%m-%d %H:%M:%S', time.localtime()) + '\r\n' + \ 'Server: Flyme awei Server\r\n' # 浏览器读取的文件可能不存在 except Exception as e: with open('static/404.html', 'rb') as f: response_body = f.read() # 响应的主体页面内容 # 响应头 response_first_line = 'HTTP/1.1 404 Not Found\r\n' response_header = 'Content-Length:'+str(len(response_body))+'\r\n' + \ 'Content-Type: text/html; charset=utf-8\r\n' + \ 'Date:' + time.strftime('%Y-%m-%d %H:%M:%S', time.localtime()) + '\r\n' + \ 'Server: Flyme awei Server\r\n' # 最后都会执行的代码 finally: # 组成响应数据发送给(客户端)浏览器 response = (response_first_line + response_header + '\r\n').encode('utf-8') + response_body new_socket.send(response) # 关闭套接字 new_socket.close() # 启动服务器,并接受客户端请求 def start(self): # 循环并多线程来接收客户端请求 while True: # accept等待客户端连接 new_socket, ip_port = self.server_socket.accept() print("客户端ip和端口", ip_port) # 一个客户端的请求交给一个线程来处理 sub_thread = threading.Thread(target=MyHttpWebServer.handle_browser_request, args=(new_socket, )) # 设置当前线程为守护线程 sub_thread.setDaemon(True) sub_thread.start() # 启动子线程# Web 服务器程序的入口def main(): web_server = MyHttpWebServer(8080) web_server.start()if __name__ == '__main__': main()2.开发Web框架主体程序

1、根据请求路径,动态的响应对应的数据

# -*- coding: utf-8 -*-# @File : MyFramework.py# @author: Flyme awei # @email : 1071505897@qq.com# @Time : 2022/7/25 14:05import time# 自定义Web框架# 处理动态资源请求的函数def handle_request(parm): request_path = parm['request_path'] if request_path == '/index.html': # 当前请求路径有与之对应的动态响应,当前框架只开发了 index.html的功能 response = index() return response else: # 没有动态资源的数据,返回404页面 return page_not_found()# 当前 index函数,专门处理index.html的请求def index(): # 需求,在页面中动态显示当前系统时间 data = time.strftime('%Y-%m-%d %H:%M:%S', time.localtime()) response_body = data response_first_line = 'HTTP/1.1 200 OK\r\n' response_header = 'Content-Length:' + str(len(response_body)) + '\r\n' + \ 'Content-Type: text/html; charset=utf-8\r\n' + \ 'Date:' + time.strftime('%Y-%m-%d %H:%M:%S', time.localtime()) + '\r\n' + \ 'Server: Flyme awei Server\r\n' response = (response_first_line + response_header + '\r\n' + response_body).encode('utf-8') return responsedef page_not_found(): with open('static/404.html', 'rb') as f: response_body = f.read() # 响应的主体页面内容 # 响应头 response_first_line = 'HTTP/1.1 404 Not Found\r\n' response_header = 'Content-Length:' + str(len(response_body)) + '\r\n' + \ 'Content-Type: text/html; charset=utf-8\r\n' + \ 'Date:' + time.strftime('%Y-%m-%d %H:%M:%S', time.localtime()) + '\r\n' + \ 'Server: Flyme awei Server\r\n' response = (response_first_line + response_header + '\r\n').encode('utf-8') + response_body return responsePython开发自定义Web框架(python创建自定义函数)

2、如果请求路径,没有对应的响应数据也需要返回404页面

3.使用模板来展示响应内容

1、自己设计一个模板 index.html ,中有一些地方采用动态的数据来替代

<!DOCTYPE html><html lang="zh-CN"><head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>首页 - 电影列表</title> <link href="/css/bootstrap.min.css" rel="stylesheet"> <script src="/js/jquery-1.12.4.min.js"></script> <script src="/js/bootstrap.min.js"></script></head><body><div class="navbar navbar-inverse navbar-static-top "> <div class="container"> <div class="navbar-header"> <button class="navbar-toggle" data-toggle="collapse" data-target="#mymenu"> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a href="#" class="navbar-brand">电影列表</a> </div> <div class="collapse navbar-collapse" id="mymenu"> <ul class="nav navbar-nav"> <li class="active"><a href="">电影信息</a></li> <li><a href="">个人中心</a></li> </ul> </div> </div></div><div class="container"> <div class="container-fluid"> <table class="table table-hover"> <tr> <th>序号</th> <th>名称</th> <th>导演</th> <th>上映时间</th> <th>票房</th> <th>电影时长</th> <th>类型</th> <th>备注</th> <th>删除电影</th> </tr> {%datas%} </table> </div></div></body></html>

2、怎么替代,替代什么数据

response_body = response_body.replace('{%datas%}', data)

4.开发框架的路由列表功能

1、以后开发新的动作资源的功能,只需要: a、增加一个条件判断分支 b、增加一个专门处理的函数

2、路由: 就是请求的URL路径和处理函数直接的映射。

3、路由表

请求路径处理函数/index.htmlindex函数/user_info.htmluser_info函数# 定义路由表route_list = { ('/index.html', index), ('/user_info.html', user_info)}for path, func in route_list: if request_path == path: return func() else: # 没有动态资源的数据,返回404页面 return page_not_found()

注意:用户的动态资源请求,通过遍历路由表找到对应的处理函数来完成的。

5.采用装饰器的方式添加路由

1、采用带参数的装饰器

# -*- coding: utf-8 -*-# @File : My_Web_Server.py# @author: Flyme awei # @email : 1071505897@qq.com# @Time : 2022/7/24 21:28# 定义路由表route_list = []# route_list = {# ('/index.html', index),# ('/user_info.html', user_info)# }# 定义一个带参数的装饰器def route(request_path): # 参数就是URL请求 def add_route(func): # 添加路由表 route_list.append((request_path, func)) @wraps(func) def invoke(*args, **kwargs): # 调用指定的处理函数,并返回结果 return func() return invoke return add_route# 处理动态资源请求的函数def handle_request(parm): request_path = parm['request_path'] # if request_path == '/index.html': # 当前请求路径有与之对应的动态响应,当前框架只开发了 index.html的功能 # response = index() # return response # elif request_path == '/user_info.html': # 个人中心的功能 # return user_info() # else: # # 没有动态资源的数据,返回404页面 # return page_not_found() for path, func in route_list: if request_path == path: return func() else: # 没有动态资源的数据,返回404页面 return page_not_found()

2、在任何一个处理函数的基础上增加一个添加路由的功能

@route('/user_info.html')

小结:使用带参数的装饰器,可以把我们的路由自动的,添加到路由表中。

6.电影列表页面的开发案例

1、查询数据 my_web.py

# -*- coding: utf-8 -*-# @File : My_Web_Server.py# @author: Flyme awei # @email : 1071505897@qq.com# @Time : 2022/7/24 21:28import socketimport sysimport threadingimport timeimport MyFramework# 开发自己的Web服务器主类class MyHttpWebServer(object): def __init__(self, port): # 创建HTTP服务器的套接字 server_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) # 设置端口号复用,程序退出之后不需要等待几分钟,直接释放端口 server_socket.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, True) server_socket.bind(('', port)) server_socket.listen(128) self.server_socket = server_socket # 处理浏览器请求的函数 @staticmethod def handle_browser_request(new_socket): # 接受客户端发送过来的数据 recv_data = new_socket.recv(4096) # 如果没有收到数据,那么请求无效,关闭套接字,直接退出 if len(recv_data) == 0: new_socket.close() return # 对接受的字节数据,转换成字符 request_data = recv_data.decode('utf-8') print("浏览器请求的数据:", request_data) request_array = request_data.split(' ', maxsplit=2) # 得到请求路径 request_path = request_array[1] print('请求路径是:', request_path) if request_path == '/': # 如果请求路径为跟目录,自动设置为/index.html request_path = '/index.html' # 根据请求路径来判断是否是动态资源还是静态资源 if request_path.endswith('.html'): '''动态资源的请求''' # 动态资源的处理交给Web框架来处理,需要把请求参数传给Web框架,可能会有多个参数,所有采用字典机构 params = { 'request_path': request_path, } # Web框架处理动态资源请求之后,返回一个响应 response = MyFramework.handle_request(params) new_socket.send(response) new_socket.close() else: '''静态资源的请求''' response_body = None # 响应主体 response_header = None # 响应头 response_first_line = None # 响应头的第一行 # 其实就是:根据请求路径读取/static目录中静态的文件数据,响应给客户端 try: # 读取static目录中对应的文件数据,rb模式:是一种兼容模式,可以打开图片,也可以打开js with open('static' + request_path, 'rb') as f: response_body = f.read() if request_path.endswith('.jpg'): response_type = 'image/webp' response_first_line = 'HTTP/1.1 200 OK' response_header = 'Server: Laoxiao_Server\r\n' except Exception as e: # 浏览器想读取的文件可能不存在 with open('static/404.html', 'rb') as f: response_body = f.read() # 响应的主体页面内容(字节) # 响应头 (字符数据) response_first_line = 'HTTP/1.1 404 Not Found\r\n' response_header = 'Server: Laoxiao_Server\r\n' finally: # 组成响应数据,发送给客户端(浏览器) response = (response_first_line + response_header + '\r\n').encode('utf-8') + response_body new_socket.send(response) new_socket.close() # 关闭套接字 # 启动服务器,并且接受客户端的请求 def start(self): # 循环并且多线程来接受客户端的请求 while True: new_socket, ip_port = self.server_socket.accept() print("客户端的ip和端口", ip_port) # 一个客户端请求交给一个线程来处理 sub_thread = threading.Thread(target=MyHttpWebServer.handle_browser_request, args=(new_socket,)) sub_thread.setDaemon(True) # 设置当前线程为守护线程 sub_thread.start() # 子线程要启动# web服务器程序的入口def main(): web_server = MyHttpWebServer(8080) web_server.start()if __name__ == '__main__': main()

MyFramework.py

# -*- coding: utf-8 -*-# @File : My_Web_Server.py# @author: Flyme awei # @email : 1071505897@qq.com# @Time : 2022/7/24 21:28import timefrom functools import wrapsimport pymysql# 定义路由表route_list = []# route_list = {# # ('/index.html',index),# # ('/userinfo.html',user_info)# }# 定义一个带参数装饰器def route(request_path): # 参数就是URL请求 def add_route(func): # 添加路由到路由表 route_list.append((request_path, func)) @wraps(func) def invoke(*arg, **kwargs): # 调用我们指定的处理函数,并且返回结果 return func() return invoke return add_route# 处理动态资源请求的函数def handle_request(params): request_path = params['request_path'] for path, func in route_list: if request_path == path: return func() else: # 没有动态资源的数据,返回404页面 return page_not_found() # if request_path =='/index.html': # 当前的请求路径有与之对应的动态响应,当前框架,我只开发了index.html的功能 # response = index() # return response # # elif request_path =='/userinfo.html': # 个人中心的功能,user_info.html # return user_info() # else: # # 没有动态资源的数据,返回404页面 # return page_not_found()# 当前user_info函数,专门处理userinfo.html的动态请求@route('/userinfo.html')def user_info(): # 需求:在页面中动态显示当前系统时间 date = time.strftime('%Y-%m-%d %H:%M:%S', time.localtime()) # response_body =data with open('template/user_info.html', 'r', encoding='utf-8') as f: response_body = f.read() response_body = response_body.replace('{%datas%}', date) response_first_line = 'HTTP/1.1 200 OK\r\n' response_header = 'Server: Laoxiao_Server\r\n' response = (response_first_line + response_header + '\r\n' + response_body).encode('utf-8') return response# 当前index函数,专门处理index.html的请求@route('/index.html')def index(): # 需求:从数据库中取得所有的电影数据,并且动态展示 # date = time.strftime('%Y-%m-%d %H:%M:%S', time.localtime()) # response_body =data # 1、从MySQL中查询数据 conn = pymysql.connect(host='localhost', port=3306, user='root', password='******', database='test', charset='utf8') cursor = conn.cursor() cursor.execute('select * from t_movies') result = cursor.fetchall() # print(result) datas = "" for row in result: datas += '''<tr> <td>%s</td> <td>%s</td> <td>%s</td> <td>%s</td> <td>%s 亿人民币</td> <td>%s</td> <td>%s</td> <td>%s</td> <td> <input type='button' value='删除'/> </td> </tr> ''' % row print(datas) # 把查询的数据,转换成动态内容 with open('template/index.html', 'r', encoding='utf-8') as f: response_body = f.read() response_body = response_body.replace('{%datas%}', datas) response_first_line = 'HTTP/1.1 200 OK\r\n' response_header = 'Server: Laoxiao_Server\r\n' response = (response_first_line + response_header + '\r\n' + response_body).encode('utf-8') return response# 处理没有找到对应的动态资源def page_not_found(): with open('static/404.html', 'rb') as f: response_body = f.read() # 响应的主体页面内容(字节) # 响应头 (字符数据) response_first_line = 'HTTP/1.1 404 Not Found\r\n' response_header = 'Server: Laoxiao_Server\r\n' response = (response_first_line + response_header + '\r\n').encode('utf-8') + response_body return response

2、根据查询的数据得到动态的内容

本文链接地址:https://www.jiuchutong.com/zhishi/298945.html 转载请保留说明!

上一篇:vue-router路由懒加载(vue router-view路由详解)

下一篇:如何运行vue项目(超详细图解)(运行vue项目的快捷键)

  • edge如何删除hao123强制首页(edge如何删除hao360强制首页)

    edge如何删除hao123强制首页(edge如何删除hao360强制首页)

  • 中国国家数字图书馆怎么注册(中国国家数字图书馆官网入口)

    中国国家数字图书馆怎么注册(中国国家数字图书馆官网入口)

  • 微信手机号显示给别人看怎么设置(怎样关闭微信手机号显示)

    微信手机号显示给别人看怎么设置(怎样关闭微信手机号显示)

  • 关闭系统不需要的服务主要目的是(关掉系统)

    关闭系统不需要的服务主要目的是(关掉系统)

  • b站的贝壳是怎么来的(b站的贝壳是怎么算的)

    b站的贝壳是怎么来的(b站的贝壳是怎么算的)

  • 买的淘宝号实名认证了就安全吗(买的淘宝号实名已经实名认证了怎么还显示未实名)

    买的淘宝号实名认证了就安全吗(买的淘宝号实名已经实名认证了怎么还显示未实名)

  • airpods语音对方听不清怎么办(airpods语音对方也能听见我手机里的声音)

    airpods语音对方听不清怎么办(airpods语音对方也能听见我手机里的声音)

  • 手机玩一会儿就发烫怎么办(手机玩一会儿就发烫怎么解决)

    手机玩一会儿就发烫怎么办(手机玩一会儿就发烫怎么解决)

  • 华为能用oppo闪充吗(华为手机能用oppo手机充电器吗)

    华为能用oppo闪充吗(华为手机能用oppo手机充电器吗)

  • 闲鱼收手续费吗(闲鱼平台是怎么盈利的)

    闲鱼收手续费吗(闲鱼平台是怎么盈利的)

  • 平板小程序屏幕变小了(平板小程序屏幕怎么不能放大)

    平板小程序屏幕变小了(平板小程序屏幕怎么不能放大)

  • 苹果手机充满电后一夜不用就没电了(苹果手机充满电能用多长时间)

    苹果手机充满电后一夜不用就没电了(苹果手机充满电能用多长时间)

  • 锤子手机充电自动关机(锤子手机充电自动关机是什么原因)

    锤子手机充电自动关机(锤子手机充电自动关机是什么原因)

  • 恢复iphone什么意思(什么是苹果恢复模式)

    恢复iphone什么意思(什么是苹果恢复模式)

  • los红灯闪烁是欠费了吗(los1闪红灯)

    los红灯闪烁是欠费了吗(los1闪红灯)

  • airpods pro能调音量吗(airpodspro可以调音量)

    airpods pro能调音量吗(airpodspro可以调音量)

  • ps扫描文件怎么改字(ps扫描文件怎么弄清楚一点的)

    ps扫描文件怎么改字(ps扫描文件怎么弄清楚一点的)

  • icloud怎么备份通讯录(苹果icloud怎么备份通讯录)

    icloud怎么备份通讯录(苹果icloud怎么备份通讯录)

  • 抖音里怎么看访客记录(抖音怎么看访客记录陌生人)

    抖音里怎么看访客记录(抖音怎么看访客记录陌生人)

  • 日历怎么显示节日(日历怎么显示二十四节气)

    日历怎么显示节日(日历怎么显示二十四节气)

  • vanke是什么牌子(vankyo是什么牌子)

    vanke是什么牌子(vankyo是什么牌子)

  • qq空间已相恋怎么去掉(qq空间里的已相恋0天怎么弄掉)

    qq空间已相恋怎么去掉(qq空间里的已相恋0天怎么弄掉)

  • 什么是宏(什么是宏程序)

    什么是宏(什么是宏程序)

  • 0x800704cf 不能访问网络位置(0x80070035无法访问)

    0x800704cf 不能访问网络位置(0x80070035无法访问)

  • HPWuSchd2.exe是什么进程 作用是什么 HPWuSchd2进程查询(hpwuschd application)

    HPWuSchd2.exe是什么进程 作用是什么 HPWuSchd2进程查询(hpwuschd application)

  • groupmod命令  更改群组属性(groupinfo命令)

    groupmod命令 更改群组属性(groupinfo命令)

  • 织梦dedecms文章简介/描述/description长度的修改(织梦如何采集文章)

    织梦dedecms文章简介/描述/description长度的修改(织梦如何采集文章)

  • 新公司什么时候开始建账
  • 税款滞纳金和利息
  • 出口退税账务怎么做账
  • 契税是什么意思契税是过户费吗
  • 运费收入算销售收入吗
  • 废旧物资收购发票取消
  • 出口退税不退税主要适用于
  • 单位投资非盈利性组织怎样核算
  • 营改增服务
  • 外购货物准予抵扣进项税额26万元,货物已验收入库
  • 企业合并怎么做账
  • 个体工商户生产经营所得税率
  • 为员工买的商业险是否能税前扣除
  • 适用简易计税方法的企业提供适用零税率的应税服务
  • 以前年度损益调整贷方余额表示什么
  • 金融衍生工具的特点不包括
  • 怎么把过期银行卡的钱取出来
  • 计提减值的固定资产处置
  • 华为手机蓝牙传送照片到苹果手机
  • 合伙企业合伙人工资的账务处理
  • 企业奠基费用如何入账
  • 没收到电费账单怎么办
  • 房地产开发商负责什么
  • 电脑装系统分区出现错误
  • 其他综合收益属于什么类
  • 和linux
  • 系统远程桌面连接怎么用
  • 最值钱的苹果
  • 租房交了押金
  • 一借多贷的会计分录怎么写
  • 原始凭证必须具备的基本要素
  • 车辆被盗
  • wordpress使用
  • 公司费用报销包括哪些
  • php获取访问者mac地址
  • 个人往来款如何转为公司股权
  • 谷粒商城二十五springCloud之Sleuth+Zipkin 服务链路追踪
  • 失业保险金退回告知书
  • 固定资产计提折旧的方法
  • 预计负债的主要账务处理
  • 免费赠送的产品报关金额
  • 哪些行业不用缴纳增值税
  • SQLite学习手册(SQLite在线备份)
  • 银行存款对账方法
  • 管理费用处理的是
  • sqlserver 中charindex/patindex/like 的比较
  • SQL2005Express中导入ACCESS数据库的两种方法
  • 2019年印花税减半征收条件
  • 汇兑损益在哪个表
  • 小规模公司购买汽车会计分录
  • 保修期间免费提车可以吗
  • 新准则公允价值变动科目余额为负数
  • 农业保险赔付率数据查询
  • 农村的扶贫政策是什么
  • 公司名义送花篮属于什么费用
  • 企业需要报哪些税
  • 会计处理是会计分录吗
  • 详谈是什么意思
  • win10系统预览版
  • 使用u盘安装win10
  • ezulumain.exe是病毒进程吗 ezulumain进程安全吗
  • linux限速
  • linux系统中make的用法
  • win10连热点无网络
  • 如何升级win10专业版
  • 网络连接受限怎么处理win8
  • 多个版本python
  • glortho函数
  • jquery加载函数
  • 酷狗模拟器
  • unity火球特效
  • shell脚本实现文件移动、复制等操作
  • js获取内容高度
  • linux shell 进程
  • unity ti
  • jquery怎么打开
  • javascript 作用
  • 为什么要去山西
  • 四川省地方税务局公告2018年第3号
  • 增值税税控开票软件密码不知道了怎么办
  • 免责声明:网站部分图片文字素材来源于网络,如有侵权,请及时告知,我们会第一时间删除,谢谢! 邮箱:opceo@qq.com

    鄂ICP备2023003026号

    网站地图: 企业信息 工商信息 财税知识 网络常识 编程技术

    友情链接: 武汉网站建设