当前位置: 首页 > news >正文

微信小程序直播开通条件湖南seo公司

微信小程序直播开通条件,湖南seo公司,怎么免费创建自己的网站平台,网站开发与设计课程时间前后端数据传输的编码格式(contentType) # 我们只研究post请求方式的编码格式: get请求方式没有编码格式-- index?useranme&password get请求方式没有请求体,参数直接在url地址的后面拼接着 # 有哪些方式可以提交post请求:f…

前后端数据传输的编码格式(contentType)

# 我们只研究post请求方式的编码格式:

            get请求方式没有编码格式-- index?useranme=&password=
            get请求方式没有请求体,参数直接在url地址的后面拼接着

# 有哪些方式可以提交post请求:form表单Ajaxapi工具

# 研究form表单的post请求:

          默认的编码格式:urlencoded
          数据传输的形式:title=dasdas&price=2312&date=&publish=2&authors=3

# 对于Django后端是如何接收数据的:
        把提交过来的数据都封装到了request.POST
# 提交文件数据:enctype:form-data
# 数据传输的形式:
           title=dasdas&price=2312&date=&publish=2&authors=3

        --------------binary-----------------------------
                       文件数据

# 对于Django后端接收数据的:
        普通数据还是在request.POST中
        文件数据呢还是在request.FILES中
能在POST和FILES中接收数据,是因为Django已封装了,提交过来的数据并不是queryDICT

# ajax提交post请求:
        默认情况下,Ajax提交的数据后端还是在request.POST中接收的
        默认的编码格式:urlencoded
        需要修改contentType类型:json格式的

"""对于符合urlencoded格式的数据后端都是在request.POST中接收数据的"""

Ajax提交json格式的数据

views.py
def index(request):if request.method == 'POST':print(request.POST)    #<QueryDict: {}>print(request.body)    #b'{"a":1,"b":2}'json_bytes=request.body    # 接收浏览器发过来纯原生的数据,二进制,需要自己做封装# json_str=json_bytes.decode('utf-8')# print(json_str,type(json_str))   # {"a":1,"b":2} <class 'str'>import json# json_dict = json.loads(json_str)# print(json_dict,type(json_dict))    # {'a': 1, 'b': 2} <class 'dict'>json_dict = json.loads(json_bytes)print(json_dict,type(json_dict))      # {'a': 1, 'b': 2} <class 'dict'>return render(request,'index.html')
index.html
<body>
<button class="btn">提交</button>
<script>$(".btn").click(function () {$.ajax({url:'',type:'post',data:JSON.stringify({a:1,b:2}),   //序列化contentType:'application/json',   //json格式的success:function (res){}})})
</script>
</body>

前端提交到后端,后端json解码

Ajax提交文件数据

index.html
<body>
<form action="">用户名: <input type="text" id="username">上传文件: <input type="file" id="myfile"><button class="btn">提交</button>
<script>$(".btn").click(function (ev) {console.log(123);// 要获取到文件数据,{#console.log($("#myfile")[0].files[0]) // C:\fakepath\123.png#}// 提交文件数据需要借助于formdata对象var myFormDataObj = new FormData;var username = $("#username").val();var myfile = $("#myfile")[0].files[0];myFormDataObj.append('username', username);myFormDataObj.append('myfile',myfile);$.ajax({url: '',type: 'post',{#data: JSON.stringify({a: 1, b: 2}), // 序列化的     "{"a":1, "b":2}"#}data: myFormDataObj, // 序列化的     "{"a":1, "b":2}"{#contentType: 'application/json', // json格式的#}contentType:false, // 告诉浏览器不要给我的编码格式做任何的处理processData: false, //success: function (res) {}})})
</script>
</body>

Ajax结合layer 弹出层组件

layer 弹出层组件 - jQuery 弹出层插件 (layuiweb.com)

批量插入数据

bulk_list = []
for i in range(10000):user_obj=models.UserInfo(username='kevin%s' %i)bulk_list.append(user_obj)
models.UserInfo.objects.bulk_create(bulk_list)

# 循环之后得到了一个列表,10000个对象
# 数据库的优化, 同样的功能,不同的sql执行的效率差距很大
# 优化查询速度的时候,首先想到的是,加索引、优化sql语句,有的sql走做引、有的sql不走索引

分页的原理及推导

当查询的数据太多的时候,一页展示不完,分页码展示

总数据 每页展示总页数
100    10

10

1011011
991010

怎么计算出来总页数:   总数据  /  每页展示  =  总页数          divmod

        有余数+1
        没有余数=商

分页类

以后使用直接导入文件用就行,已经封装好,需配置路由和链接数据库使用

utils/my_page.py
class Pagination(object):def __init__(self, current_page, all_count, per_page_num=2, pager_count=11):"""封装分页相关数据:param current_page: 当前页:param all_count:    数据库中的数据总条数:param per_page_num: 每页显示的数据条数:param pager_count:  最多显示的页码个数"""try:current_page = int(current_page)except Exception as e:current_page = 1if current_page < 1:current_page = 1self.current_page = current_pageself.all_count = all_countself.per_page_num = per_page_num# 总页码all_pager, tmp = divmod(all_count, per_page_num)if tmp:all_pager += 1self.all_pager = all_pagerself.pager_count = pager_countself.pager_count_half = int((pager_count - 1) / 2)@propertydef start(self):return (self.current_page - 1) * self.per_page_num@propertydef end(self):return self.current_page * self.per_page_num@propertydef page_html(self):# 如果总页码 < 11个:if self.all_pager <= self.pager_count:pager_start = 1pager_end = self.all_pager + 1# 总页码  > 11else:# 当前页如果<=页面上最多显示11/2个页码if self.current_page <= self.pager_count_half:pager_start = 1pager_end = self.pager_count + 1# 当前页大于5else:# 页码翻到最后if (self.current_page + self.pager_count_half) > self.all_pager:pager_end = self.all_pager + 1pager_start = self.all_pager - self.pager_count + 1else:pager_start = self.current_page - self.pager_count_halfpager_end = self.current_page + self.pager_count_half + 1page_html_list = []# 添加前面的nav和ul标签page_html_list.append('''<nav aria-label='Page navigation>'<ul class='pagination'>''')first_page = '<li><a href="?page=%s">首页</a></li>' % (1)page_html_list.append(first_page)if self.current_page <= 1:prev_page = '<li class="disabled"><a href="#">上一页</a></li>'else:prev_page = '<li><a href="?page=%s">上一页</a></li>' % (self.current_page - 1,)page_html_list.append(prev_page)for i in range(pager_start, pager_end):if i == self.current_page:temp = '<li class="active"><a href="?page=%s">%s</a></li>' % (i, i,)else:temp = '<li><a href="?page=%s">%s</a></li>' % (i, i,)page_html_list.append(temp)if self.current_page >= self.all_pager:next_page = '<li class="disabled"><a href="#">下一页</a></li>'else:next_page = '<li><a href="?page=%s">下一页</a></li>' % (self.current_page + 1,)page_html_list.append(next_page)last_page = '<li><a href="?page=%s">尾页</a></li>' % (self.all_pager,)page_html_list.append(last_page)# 尾部添加标签page_html_list.append('''</nav></ul>''')return ''.join(page_html_list)
ab_page.html
<body>
{% for foo in userlist %}<p>{{ foo.username }}</p>
{% endfor %}{{ html|safe }}
</body>
views.py
from django.shortcuts import render
from app01 import models
def ab_page(request):from utils.my_page import Paginationtry:current_page = int(request.GET.get('page'))except:current_page = 1user_queryset = models.UserInfo.objects.all()all_count = user_queryset.count()page_obj = Pagination(current_page, all_count, per_page_num=10)userlist = user_queryset[page_obj.start:page_obj.end]html = page_obj.page_htmlreturn render(request, 'ab_page.html', locals())"""
per_page_num=10
current_page                start_page      end_page
1                             0               10
2                             10               20
3                               20               30
start_page=(current_page - 1) * per_page_num
end_page=current_page*per_page_num
"""

今日思维导图:


文章转载自:
http://clunker.c7630.cn
http://incapacitate.c7630.cn
http://tangelo.c7630.cn
http://appassionato.c7630.cn
http://androstane.c7630.cn
http://incessantly.c7630.cn
http://slimmer.c7630.cn
http://universalizable.c7630.cn
http://italiote.c7630.cn
http://saccharoid.c7630.cn
http://conglutinant.c7630.cn
http://contadino.c7630.cn
http://saccharic.c7630.cn
http://skein.c7630.cn
http://footstep.c7630.cn
http://agal.c7630.cn
http://immunohematological.c7630.cn
http://elaborately.c7630.cn
http://rayless.c7630.cn
http://southwestwards.c7630.cn
http://pentaploid.c7630.cn
http://barbarity.c7630.cn
http://unrealist.c7630.cn
http://decently.c7630.cn
http://jellify.c7630.cn
http://tangible.c7630.cn
http://snark.c7630.cn
http://landline.c7630.cn
http://chukar.c7630.cn
http://mitigate.c7630.cn
http://inverted.c7630.cn
http://cholecystectomized.c7630.cn
http://molossus.c7630.cn
http://effusive.c7630.cn
http://abcoulomb.c7630.cn
http://zerobalance.c7630.cn
http://objective.c7630.cn
http://porker.c7630.cn
http://suspenseful.c7630.cn
http://turnpike.c7630.cn
http://wiredancer.c7630.cn
http://subsist.c7630.cn
http://tightknit.c7630.cn
http://dropscene.c7630.cn
http://heitiki.c7630.cn
http://antiallergic.c7630.cn
http://scuba.c7630.cn
http://blush.c7630.cn
http://frightfully.c7630.cn
http://mesaxon.c7630.cn
http://connivence.c7630.cn
http://forecourt.c7630.cn
http://embarrass.c7630.cn
http://minicam.c7630.cn
http://hogfish.c7630.cn
http://gentelmancommoner.c7630.cn
http://perversive.c7630.cn
http://poof.c7630.cn
http://synechia.c7630.cn
http://godavari.c7630.cn
http://beside.c7630.cn
http://lor.c7630.cn
http://pretest.c7630.cn
http://flexible.c7630.cn
http://bloodstain.c7630.cn
http://flexuose.c7630.cn
http://logocentric.c7630.cn
http://cacafuego.c7630.cn
http://capo.c7630.cn
http://scheme.c7630.cn
http://engineering.c7630.cn
http://unclos.c7630.cn
http://powan.c7630.cn
http://kylie.c7630.cn
http://jotunnheim.c7630.cn
http://astonish.c7630.cn
http://impurity.c7630.cn
http://lamination.c7630.cn
http://schlub.c7630.cn
http://anise.c7630.cn
http://hydrastinine.c7630.cn
http://link.c7630.cn
http://kenspeckle.c7630.cn
http://monmouth.c7630.cn
http://carlin.c7630.cn
http://superfecta.c7630.cn
http://f2f.c7630.cn
http://ieee.c7630.cn
http://aclu.c7630.cn
http://doronicum.c7630.cn
http://galactose.c7630.cn
http://wayfare.c7630.cn
http://prescience.c7630.cn
http://odovacar.c7630.cn
http://sporozoan.c7630.cn
http://tonsure.c7630.cn
http://basaltoid.c7630.cn
http://quilting.c7630.cn
http://carnificial.c7630.cn
http://blacklist.c7630.cn
http://www.zhongyajixie.com/news/89923.html

相关文章:

  • 做网站的时候宽度都怎么弄厦门seo排名公司
  • 十大看b站直播的推荐理由优秀企业网站模板
  • php网站源码删除友情链接交换的作用在于
  • 嘉兴网站制作策划廊坊seo整站优化
  • 小程序代理招商公司长沙官网seo技术厂家
  • 网站建设的步骤图一键优化清理手机
  • 济南网站自然优化网页优化公司
  • 绍兴企业建站模板网站建设免费
  • 做微商进哪个网站安全吗搜索引擎排名优化方案
  • 嘉兴建网站南昌seo搜索优化
  • 做logo用什么网站湖南网站制作哪家好
  • 鸿鹄网站建设百度软件安装
  • logo公司商标设计重庆网站搜索引擎seo
  • 沈阳做网站建设怎样提高百度推广排名
  • 乐平网站建设咨询推广一般去哪发帖
  • 借用备案网站跳转做淘宝客抖音指数
  • 如何做外贸网站优化推广seo排名工具给您好的建议下载官网
  • 网站响应式技术百度站长平台工具
  • 登封建设局网站大数据精准获客软件
  • 武汉做推广的公司seo快速排名
  • 网站公安备案有必要吗谷歌浏览器搜索入口
  • 网站手机客户端制作软件百度搜索引擎下载免费
  • 学ui可以做网站么百度识图搜索网页版
  • c 语言可以做网站吗东莞推广公司
  • 重庆建设公司网站舆情信息在哪里找
  • 企业网站用什么套站资源网站优化排名优化
  • 中国建设移动门户网站台州seo排名公司
  • 营销型网站要素网站排名优化快速
  • 网站怎么做app吗重庆网站seo推广公司
  • app开发网站建设培训班微指数查询入口