List<String>变成String 按照逗号隔开 StringUtils.join(proCreateParam.getCreativeTag(), ",") String变成List<String> Arrays.asList(materialReportView.getCreativeTa ...
分类:
其他好文 时间:
2020-10-09 21:35:50
阅读次数:
37
1.微博绑定用户接口 1.1 oauth/urls.py 中添加路由 urlpatterns = [ path('weibo/binduser/', views.OauthWeiboBindUser.as_view()), # /oauth/weibo/callback/ ] 1.2 oauth/v ...
分类:
其他好文 时间:
2020-10-09 21:24:27
阅读次数:
19
MVC(ModelViewController)即模型、视图、控制器 模型表示业务数据及业务处理,用来封装数据及行为;视图是用户看到并与之交互的界面;控制器接受用户输入并调用模型和视图去完成用户的请求。 aspx 就是 View,视图; Model:DataSet、Reader、对象; Contro ...
分类:
Web程序 时间:
2020-10-09 20:25:18
阅读次数:
32
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" an ...
分类:
其他好文 时间:
2020-10-08 19:36:23
阅读次数:
24
Qt当中使用QFile类对文件进行读写操作,对文本文件也可以与QTextStream一起使用,这样读写操作会更加简便。QFileInfo可以用来获取文件的信息。QDir可以用于对文件夹进行操作。 一、文件读操作 (1)使用QFile类 Qt封装了QFile类,方便我们对文件进行操作,可以按照如下的步 ...
分类:
其他好文 时间:
2020-10-08 19:34:43
阅读次数:
17
1.django 缓存设置 django的六种缓存(mysql+redis) :https://www.cnblogs.com/xiaonq/p/7978402.html#i6 1.1 安装Django缓存模块 pip install django-redis==4.12.1 1.2 syl/set ...
分类:
其他好文 时间:
2020-10-07 21:30:23
阅读次数:
35
1.1.user/urls.py 中添加路由 urlpatterns = [ path('register/', views.RegisterView.as_view()), # 注册视图, /user/register/ ] 1.2.user/views.py 中写注册视图函数 class Reg ...
分类:
其他好文 时间:
2020-10-07 21:13:12
阅读次数:
34
about.wxml <view class='container'> <text style='font-weight: bold; font-size: 60rpx;'> 电影周周看</text> <view> <text>我</text> <navigator style='display: ...
分类:
其他好文 时间:
2020-10-07 20:40:28
阅读次数:
30
三种方式实现作用域放值 springMVC处理请求过程中,往作用域中放值有以下三种方式: 总结:根据ModelAndView源码调试,不管用以下哪种方式,都会把Model数据和View数据封装到一个ModelAndView中 1 package com.iwakan.controller; 2 3 ...
分类:
其他好文 时间:
2020-10-07 20:32:36
阅读次数:
32
原文链接:https://www.cnblogs.com/inception6-lxc/p/8996050.html 在看书的时候有个往链表里添加节点的函数,代码中考虑到可能给出的头指针为空,并做另外一些处理。具体代码如下: [cpp] view plain copy print? #include ...
分类:
编程语言 时间:
2020-10-06 20:14:33
阅读次数:
21