报错:Retrying (Retry(total=4, connect=None, read=None, redirect=None)) after connection broken…翻译:对于该包的下载地址连接超时,默认的pip源速度太慢了解决方法:使用国内的镜像服务,可以手动指定源国内镜像服务 ...
分类:
编程语言 时间:
2020-02-19 19:04:57
阅读次数:
81
一、常规的JS页面跳转代码 1、在原来的窗体中直接跳转用 <script type=”text/javascript”> window.location.href=”http://www.gzpu.com”; </script> 2、在新窗体中打开页面用: <script type=”text/ja ...
分类:
Web程序 时间:
2020-02-19 18:58:09
阅读次数:
362
一 视图简介 视图,又称视图函数或者视图类。它接受Web请求并且返回Web响应。请求封装到视图函数的参数中,一般该参数写成request。响应方式有render、redirect和HttpResponse。任何视图函数最终都要返回一个响应。 二 视图写法 视图写法有两种:基于函数的处理请求方式和基于 ...
分类:
其他好文 时间:
2020-02-19 17:32:27
阅读次数:
66
基本概念 进程:进程是一个具有独立功能的程序关于某个数据集合的一次运行活动。进程是操作系统动态执行的基本单元。 线程:一个进程中包含若干线程,当然至少有一个线程,线程可以利用进程所拥有的资源。线程是独立运行和独立调度的基本单元。 协程:协程是一种用户态的轻量级线程。协程无需线程上下文切换的开销,也无 ...
分类:
编程语言 时间:
2020-02-18 23:21:33
阅读次数:
153
业务逻辑完成之后如保存、登陆成功等关键业务逻辑,用重定向到方式完成跳转。 可以采用在Controller中直接拼装"redirect"的方式,用ModelAndView 和 字符串拼装都可以。 还有一种,就是自定义@Configurtation 组件,注册一个 WebMvcConfiguration ...
分类:
其他好文 时间:
2020-02-18 13:08:07
阅读次数:
50
响应信息:起始行,响应头,响应体 视图接收请求并处理后,必须返回HttpResponse对象或子对象 HttpResponse(content=响应体,content_type=相应数据类型,status=状态码) # 默认200 状态码 JsonResponse 相应信息返回json字符串 ret ...
分类:
其他好文 时间:
2020-02-17 17:44:20
阅读次数:
55
onSave(personName) { this.person.name = personName; this.peopleService.save(this.person).subscribe(() => { // redirect back people list // this.router ...
分类:
其他好文 时间:
2020-02-17 01:03:40
阅读次数:
77
When we redirect to a different route from within our component's code using the Router.navigate or from within a component template via a [routerLink ...
分类:
其他好文 时间:
2020-02-16 23:28:08
阅读次数:
119
IR-drop问题的分析与修复(四):add cell padding for cells in Narrow Channel ...
分类:
其他好文 时间:
2020-02-16 16:44:12
阅读次数:
106
关键字:路由懒加载,全局导航守卫,组件导航守卫,redirect重定向,keep-alive,params,query 一、目录结构 二、index.js 1 // 配置路由相关的信息 2 import VueRouter from 'vue-router' 3 import Vue from 'v ...
分类:
其他好文 时间:
2020-02-15 18:33:54
阅读次数:
77