postman   body里发送 {"name":"admin' or '1'='1"}

  sX9JkgY3DY86   2023年11月30日   12   0   0 系统系统

  headers添加 Content-Type值 text/xml;charset=utf-8 body选择raw  xml <?xmlversion="1.0"encoding="utf-8"?> <soap:Envelopexmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xmlns:xsd="http://www.w3.org/2001/XMLSchema"xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/...

  sX9JkgY3DY86   2023年11月19日   15   0   0 xmlxml

    Ora-12570报错问题处理 使用Ado.net访问Oracle数据库,执行Select查询的时候,偶尔会出现【ORA-12570:网络会话:意外的数据包读取错误】的问题,造成业务部分数据缺失。经过多方查找,确定不是Oracle服务器的问题,也就是跟Oracle配置没有关系,随后想到是否与连接池有关,百度连接池问题后找到一帖子,跟随帖子所写,试验了一把,后续发现该问题不再发生,便写下此文章留下记录,毕竟好记性不如烂笔头。 .net跨防火墙链接oracle连接池链接长时间无通讯数据被断开后报错问题解决环境: .net4.0以上使用Oracle.ManagedDat...

   1、登录   2、先安装MATE可视化桌面 yumgroupsinstall"MATEDesktop" 选择y   3、安装XWindowSystem:图形接口 yumgroupsinstall"XWindowSystem" 选择y   4、设置服务器默认启动桌面 systemctlset-defaultgraphical.target   5、重启服务器 reboot      ALT+CTRL+F2切换到命令行界面   ALT+CTRL...

  sX9JkgY3DY86   2023年11月13日   21   0   0 服务器System重启

   xxxxx   系统运行级别     /etc/inittab  

  sX9JkgY3DY86   2023年11月13日   16   0   0 运行级别

Divider  分割线 Column(children:[Container(color:Colors.amber,child:constCenter(child:Text('上'),),),Divider(//分割线颜色color:Colors.black,//前缩进indent:100.6,//后缩进endIndent:20,//分割线厚度thickness:3.5,//上下高度,除了厚度以外空白height:10.1,),Container(color:Colors.greenAccent,child:constCenter(child:Text('下'),),),],...

  sX9JkgY3DY86   2023年11月13日   10   0   0 分割线ideText

  一、material风格  ​​Buttons​​ MaterialButton\RaisedButton\FlatButton\IconButton\FloatingActionButton\OutlineButton\DropdownButton  ​​Dialogs,alerts,andpanels​​ SimpleDialog\AlertDialog\SnackBar\BottomSheet\ExpansionPanel    ​​Informationdisplays​​ CircularProgressIndicator\Dat...

  sX9JkgY3DY86   2023年11月13日   21   0   0 idesedImage

 initstatesetstate

  sX9JkgY3DY86   2023年11月13日   18   0   0 ooo

一、内联反序列化 把JSON字符串转换成 Map<String,dynamic>或者 List<dynamic> import'dart:convert';main(List<String>args){JsonCodecjson=newJsonCodec();Stringstr='{"name":"tom"}';Map<String,dynamic>a=json.decode(str);print(a["name"]);Stringstr1='["a","b"]';List<dynamic>b=json.de...

  sX9JkgY3DY86   2023年11月13日   25   0   0 jsonflutterUser

warp Wrap(//控件间的对齐方式alignment:WrapAlignment.spaceBetween,//垂直或水平排列。默认水平direction:Axis.horizontal,spacing:30.0,//控件间的距离runSpacing:30.0,//行间距children:<Widget>[Chip(label:Text('Hamilton'),),Chip(label:Text('Lafayette'),),Chip(label:Text('Mulligan'),),Chip(label:Text('Laurens'),),Chip(label:Tex...

  sX9JkgY3DY86   2023年11月13日   22   0   0 ci控件Text

一、Android 1.引入插件 permission_handler:5.0.1+1权限请求path_provider:1.6.14路径flutter_downloader:1.4.4下载 2.androidmanifest.xml <!--网络权限--><uses-permissionandroid:name="android.permission.INTERNET"/><!-读写存储权限--><uses-permissionandroid:name="android.permission.WRITE_EXTERNAL_STORA...

  sX9JkgY3DY86   2023年11月13日   16   0   0 xmlideandroid

1.MaterialButton MaterialApp(home:Scaffold(appBar:AppBar(title:Text("测试"),),body:Center(child:MaterialButton(color:Colors.blue,textColor:Colors.white,child:Text('按钮'),onPressed:(){},))),); 2.RaisedButton MaterialApp(home:Scaffold(appBar:AppBar(title:Text("测试"),),body:Center(child:RaisedBut...

  sX9JkgY3DY86   2023年11月13日   16   0   0 Textsed

  import'package:flutter/material.dart';import'package:flutter/services.dart';voidmain()=>runApp(MyApp());classMyAppextendsStatefulWidget{@override_MyAppStatecreateState()=>_MyAppState();}class_MyAppStateextendsState<MyApp>{FocusNode_focusNode=FocusNode();Strings="";voidinitState...

  sX9JkgY3DY86   2023年11月13日   15   0   0 ideTextflutter

1.SimpleDialog 简单对话框  class_MyHomePageStateextendsState<MyHomePage>{dialog(){showDialog(context:context,builder:(BuildContextcontext){returnSimpleDialog(title:Text("data"),);});}@overrideWidgetbuild(BuildContextcontext){returnScaffold(appBar:AppBar(title:Text(widget.title),),body:Cente...

  sX9JkgY3DY86   2023年11月13日   13   0   0 ideTextsed

1.vscode搜索Flutter 点击安装Flutter会自动安装Flutter和Dart 2.打开项目 在vscodeFile-openFolder打开之前创建的项目 成功显示   如果创建一个新项目 view-commandPalette..flutter:NewPro..-输入一个项目名称   3.创建虚拟机bat  建一个bat文件 C:\Users\Mloong\AppData\Local\Android\Sdk\emulator\emulator.exe-netdelaynone-netspeedfull-avdNexus_5X_API_...

  sX9JkgY3DY86   2023年11月13日   19   0   0 乱码问题ios创建虚拟机

CircularProgressIndicator 循环进度 圆形 Center(child:Column(children:<Widget>[RaisedButton(child:Text("aa"),onPressed:(){},),CircularProgressIndicator()],),) 更换颜色 CircularProgressIndicator(  valueColor:newAlwaysStoppedAnimation<Color>(Colors.green),),   独立页面 loading(Build...

  sX9JkgY3DY86   2023年11月13日   25   0   0 控件Textsed

  decoration:BoxDecoration(borderRadius:BorderRadius.circular(30),//圆角gradient:RadialGradient(colors:[Colors.red,Colors.green]),//渐变效果boxShadow:[//阴影BoxShadow(offset:Offset(6.0,7.0),//偏移量color:Colors.black45,//颜色blurRadius:5.0,//模糊程度spreadRadius:-1.0)//扩散程度])  

  sX9JkgY3DY86   2023年11月13日   15   0   0 圆角ci偏移量

  @overrideWidgetbuild(BuildContextcontext){returnScaffold(body:Center(child:newListView(children:<Widget>[newDataTable(columns:<DataColumn>[newDataColumn(label:newGestureDetector(onTap:(){},child:Text("报警时间"),)),newDataColumn(label:newGestureDetector(onTap:(){},child:Text("报警信息"...

  sX9JkgY3DY86   2023年11月13日   15   0   0 ideTextList

一、Container     二、Padding   三、Center   四、Align   五、FittedBox   六、AspectRatio   七、ConstrainedBox   八、Baseline   九、FractionallySizedBox   十、IntrinsicHeight   十一、IntrinsicWidth   十二、LimitedBox   十三、Offstage   十四、OverflowBox   十五...

  sX9JkgY3DY86   2023年11月13日   17   0   0 系统

get请求 1.get请求不带参数 [HttpGet]publicstringg1(){return"abc";}   ()async{try{Responseresponse=awaitdio.get("https://127.0.0.1:5001/test/g1");print(response.data);}catch(e){print(e);}}();   2.get请求带参数 [HttpGet]publicstringg2(inta,stringstr){returna.ToString()+str;}   Re...

  sX9JkgY3DY86   2023年11月13日   15   0   0 bcget请求List
关注 更多

空空如也 ~ ~

粉丝 更多

空空如也 ~ ~