首页 > 其他分享 >webBroker的radio的三选 一

webBroker的radio的三选 一

时间:2025-01-01 12:07:47浏览次数:1  
标签:三选 gender Request Values webBroker radio ContentFields Response

<form action="DJ" method="post">
<input type="radio" name="gender" value="male" checked>男
<input type="radio" name="gender" value="female"> 女
<input type="radio" name="gender" value="unkown"> 未知
    <p></p>
     <input type="submit" value="提交">
</form>
//DJ   三选一
procedure TWebModule1.WebModule1WebActionItem1Action(Sender: TObject;
  Request: TWebRequest; Response: TWebResponse; var Handled: Boolean);
var s: string;
begin
//   S :=  Request.ContentFields.Text;    //gender=female  name=Value
         if Request.ContentFields.Values['gender']='male'   then  s:='男'
    else if Request.ContentFields.Values['gender']='female' then  s:='女'
    else if Request.ContentFields.Values['gender']='unkown' then  s:='未知'  ;
    Response.ContentType := 'text/html; charset="UTF-8"';
      Response.Content := s;
end;

 

标签:三选,gender,Request,Values,webBroker,radio,ContentFields,Response
From: https://www.cnblogs.com/tulater/p/18645445

相关文章

  • Android RadioButton与container左侧padding调整
    遇到了这个问题:Android:Setmargintoleftsideofradiobuttondrawable同时在这个情景下并不能修改controller内容,希望通过xml达到这个效果。一般是通过添加android:paddingLeft来达到效果,但在RadioButton中它修改的是radio和text之间的距离。另一种方法是在外面套一个Linea......
  • radio-group
    radio-group基础库1.0.0开始支持,低版本需做兼容处理。微信Windows版:支持微信Mac版:支持微信鸿蒙OS版:支持渲染框架支持情况:Skyline(使用最新Nighly工具调试)、WebView功能描述单项选择器,内部由多个radio组成。属性说明属性类型默认值必填说明最低......
  • radio
    radio基础库1.0.0开始支持,低版本需做兼容处理。微信Windows版:支持微信Mac版:支持微信鸿蒙OS版:支持渲染框架支持情况:Skyline(使用最新Nighly工具调试)、WebView功能描述单选项目。属性说明属性类型默认值必填说明最低版本valuestring否radi......
  • webBroker的checkbox的选择
    <formaction="CK"method="post"><inputtype="checkbox"name="CK1"Value="1">跑步<inputtype="checkbox"name="CK2"Value="2">游泳<inputtype=&qu......
  • webBroker显示服务上的图片和文本文件
    显示图片varFS:TFileStream;S:string;beginS:=ExtractFilePath(ParamStr(0))+Request.PathInfo;Response.ContentType:='image/png';FS:=TFileStream.Create(S,fmOpenRead);Response.ContentStream:=FS;R......
  • Flutter进阶组件(1):RadioListTiles(单选列表项)
    RadioListTile是一个特殊的ListTile,它内嵌了一个单选按钮(Radio),包含更多信息的单选项,提供多种配置信息的属性,可以表现更丰富的信息。这使得它非常适合用来创建单选列表项,常用于让用户在多个选项中选择一个的场景。一、属性RadioListTile组件提供了以下属性,以支持各种自定义需求:......
  • webbroker调用axios.min.js
    <head><scriptsrc="axios.min.js"></script></head><body><p>实现前端调用后端的HTTP请求的方法:<br>https://www.cnblogs.com/hgdzjp/p/9438893.html</p><pid="demo22">aaa</p><scri......
  • Delphi WebBroker上传文件
     主页面从a01.html导入<formaction="http://127.0.0.1:8080/upload"method="post"enctype="multipart/form-data"><inputtype="file"size="60"name="myfile"><inputtype=&quo......
  • webbroker从本地HTML文件导入
    a01.rarprocedureTWebModule1.WebModule1DefaultHandlerAction(Sender:TObject;Request:TWebRequest;Response:TWebResponse;varHandled:Boolean);varFileContent:TStringList;beginFileContent:=TStringList.Create;//假设你的HTML文件位于Web......
  • Delphi WebBroker【Web服务器应用程序】+简单接口
    一、建好项目1.新建File-New–Other–找到Web服务器应用程序2.然后会弹出这些界面,基本都直接下一步就好了【这个Demo就是这样这样的】下面可以测试一下自己的8080端口是否被占用了,占用了就换别的就好了,然后完成【不会影响后面的操作】 二、项目创建完成后然后就......