1.这部分是显示跳转到另一个Activity,这个被跳转的Activ叫做SecondActivity 写法一: Intent intent = new Intent(this,SecondActivity.class); intent.putExtra("account",accountText); ...
分类:
其他好文 时间:
2020-07-26 15:31:18
阅读次数:
105
CrawlSpider一直无法进入回调函数的 碰到的两个坑: 1、正则表达式写的不对 start_urls = ['http://wz.sun0769.com/political/index/politicsNewest?id=1&page=1'] link = LinkExtractor(allo ...
分类:
其他好文 时间:
2020-07-26 01:52:52
阅读次数:
85
一、隐士intent,紧接着上一次复习 得到第二个活动返回的数据之后,我们需要重写onActivityResult()来获取数据 protected void onActivityResult(int requestCode,int resultCode,Intent data){ switch(r ...
分类:
移动开发 时间:
2020-07-24 09:22:13
阅读次数:
88
流程 客户端发起请求 –> 进到wsgi(模型) –> 中间件(request_process) –> 路由(urls.py) –> 中间件(view_process) –> view(视图操作 -> orm操作 -> mysql ) –> 中间件(process_response before_t ...
分类:
其他好文 时间:
2020-07-23 16:28:46
阅读次数:
86
PreferenceScreen和fragment结合 一、监听事件 1.1、onPreferenceChange public boolean onPreferenceChange(Preference preference, Object objValue) { return false; } ...
分类:
移动开发 时间:
2020-07-20 22:27:20
阅读次数:
102
UGO(User/Group/Others) 目前在 Linux/Unix 文件系统中使用,也是使用最广泛的权限控制方式。是一种粗 粒度的文件系统权限控制模式。 ACL(Access Control List)访问控制列表 包括三个方面: 权限模式(Scheme) 1、IP:从 IP 地址粒度进行权 ...
分类:
其他好文 时间:
2020-07-20 10:42:00
阅读次数:
93
华为华三思科交换机设置SSH登录华为交换机:1.开启stelnet服务2.生成本地密钥对;3.配置远程登录的认证模式aaa和远程登录的协议ssh3.配置aaa的本地用户用户supadmin(设置密码、命令级别、服务类型);4.配置SSH用户supadmin认证类型为password和服务类型为STelnet;systelnetserverenablersalocal-key-paircreate2
分类:
其他好文 时间:
2020-07-19 11:28:36
阅读次数:
133
第一部分是协议(或称为服务方式)。资源的访问方式? A URL for HTTP (or HTTPS) is normally made up of three or four components: A scheme. The scheme identifies the protocol to b ...
分类:
Web程序 时间:
2020-07-19 00:51:21
阅读次数:
95
luffyapi: 项目根目录 manage.py 执行脚本 docs: 文档目录(新建) logs: 日志目录(新建) scripts: 脚本目录(新建) luffyapi: 项目主应用目录 urls: 总路由 wsgi: 发布脚本 apps: 子应用目录(新建) libs: 第三放库目录(新建) ...
分类:
其他好文 时间:
2020-07-16 21:58:07
阅读次数:
76
一、自动签发 urls from rest_framework_jwt.views import obtain_jwt_token # 使用jwt自带的登录视图 urlpatterns = [ path('login/', obtain_jwt_token), ] settings import d ...
分类:
其他好文 时间:
2020-07-16 00:03:00
阅读次数:
59