摘要:
1、请求发送: HEAD、 GET、 POST2、请求头信息: Accept Accept-Language Content-Language Last-Event-ID Content-Type 对应的值是以下三个中的任意一个 application/x-www-form-urlencode mu 阅读全文
摘要:
1、应用场景 在同一路由的情况下,不同的参数之间进行切换 注意:别忘记初始化路由页面 2、用法 a、定义方法 b、实现方法 c、初始化路由页面 3、案例 阅读全文
摘要:
// ES6 class Person{ constructor(name, age){ this.name = name; this.age = age; } getName(){ console.log(this.name) } } p = new Person('alex', 34); p.getName(); // ES5 function Person(name){ this.name 阅读全文
摘要:
在settings.py文件中添加中间件 前后端分离开发 或导入 查找MiddlewareMixin方法:1 .在setting.py文件中,随便找一个中间件 2.查看父类 3.查看父类所在.py文件的导入模块 优化 阅读全文
摘要:
参考网址地 https://www.runoob.com/vue2/vuejs-ajax-axios.html https://www.jianshu.com/p/7a9fbcbb1114 https://www.kancloud.cn/yunye/axios/ axios 发送ajax请求 一、下 阅读全文