a-switch的几种简单应用

1.第一种情况,直接bind数据:

        

<a-switch v-model="isUsed" />

        使用当前值的使用,直接使用isUsed,值为boolean

2.第二中情况,在表单中使用:

<a-form-item label="是否开启">
              <a-switch v-decorator="['BACKSWITCH', { valuePropName: 'checked',rules: [{ required: true, message: '请填写是否开启' }] ,initialValue:false},]" />
 </a-form-item>

        注意:一定要加入valuePropName: 'checked',否则绑定数据会无效。

        在初始绑定使用开启时,可以如下:

this.form.setFieldsValue({
                    BACKSWITCH:true
                });

        使用它时,可以:

this.form.validateFields((err, values) => {
        if (!err) {
            let that = this;
            if(values.BACKSWITCH){
             ...
            }else{
              ...
            }
        ...
    }
...
})

3.在列表中操作列中使用时:

 <template slot="switch" slot-scope="{record}">
              <a-switch :checked="record.BACKSWITCH?true:false" @change="onChangeUse($event,record.id)" />
            </template>

        其中onChangeUse方法如下:

onChangeUse(e,id) {
      if(e){
        ...
      }else{
        ...
      }
    ...
}

        e的值即为当前选择的boolean值。

  • 1
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
package ece448.iot_sim; import java.util.List; import java.util.Map; import java.util.TreeMap; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import ece448.iot_sim.http_server.RequestHandler; public class HTTPCommands implements RequestHandler { // Use a map so we can search plugs by name. private final TreeMap<String, PlugSim> plugs = new TreeMap<>(); public HTTPCommands(List<PlugSim> plugs) { for (PlugSim plug: plugs) { this.plugs.put(plug.getName(), plug); } } @Override public String handleGet(String path, Map<String, String> params) { // list all: / // do switch: /plugName?action=on|off|toggle // just report: /plugName logger.info("HTTPCmd {}: {}", path, params); if (path.equals("/")) { return listPlugs(); } PlugSim plug = plugs.get(path.substring(1)); if (plug == null) return null; // no such plug String action = params.get("action"); if (action == null) return report(plug); // P2: add your code here, modify the next line if necessary if("toggle".equals(action)){ plug.toggle(); return report(plug); }else if("on".equals(action)){ plug.switchOn(); return report(plug); }else if("off".equals(action)){ plug.switchOff(); return report(plug); } return "<html><body></body></html>"; } protected String listPlugs() { StringBuilder sb = new StringBuilder(); sb.append("<html><body>"); for (String plugName: plugs.keySet()) { sb.append(String.format("<p><a href='/%s'>%s</a></p>", plugName, plugName)); } sb.append("</body></html>"); return sb.toString(); } protected String report(PlugSim plug) { String name = plug.getName(); return String.format("<html><body>" +"<p>Plug %s is %s.</p>" +"<p>Power reading is %.3f.</p>" +"<p><a href='/%s?action=on'>Switch On</a></p>" +"<p><a href='/%s?action=off'>Switch Off</a></p>" +"<p><a href='/%s?action=toggle'>Toggle</a></p>" +"</body></html>", name, plug.isOn()? "on": "off", plug.getPower(), name, name, name); }如何对上述代码全部功能进行测试呢?请提供测试代码。
06-12
以下是一个简单的测试代码,可以测试HTTPCommands类中的所有功能: ``` import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; public class HTTPCommandsTest { public static void main(String[] args) { // Create some plug simulations List<PlugSim> plugs = new ArrayList<>(); plugs.add(new PlugSim("Plug1")); plugs.add(new PlugSim("Plug2")); plugs.add(new PlugSim("Plug3")); // Create an HTTPCommands object and test its methods HTTPCommands commands = new HTTPCommands(plugs); testListPlugs(commands); testReport(commands); testHandleGet(commands); } private static void testListPlugs(HTTPCommands commands) { String expected = "<html><body><p><a href='/Plug1'>Plug1</a></p><p><a href='/Plug2'>Plug2</a></p><p><a href='/Plug3'>Plug3</a></p></body></html>"; String actual = commands.listPlugs(); assert expected.equals(actual) : "testListPlugs failed: expected " + expected + ", but got " + actual; } private static void testReport(HTTPCommands commands) { PlugSim plug = new PlugSim("TestPlug"); plug.switchOn(); plug.setPower(123.456); String expected = "<html><body><p>Plug TestPlug is on.</p><p>Power reading is 123.456.</p><p><a href='/TestPlug?action=on'>Switch On</a></p><p><a href='/TestPlug?action=off'>Switch Off</a></p><p><a href='/TestPlug?action=toggle'>Toggle</a></p></body></html>"; String actual = commands.report(plug); assert expected.equals(actual) : "testReport failed: expected " + expected + ", but got " + actual; } private static void testHandleGet(HTTPCommands commands) { // Test listing all plugs String expected = "<html><body><p><a href='/Plug1'>Plug1</a></p><p><a href='/Plug2'>Plug2</a></p><p><a href='/Plug3'>Plug3</a></p></body></html>"; String actual = commands.handleGet("/", new HashMap<>()); assert expected.equals(actual) : "testHandleGet failed: expected " + expected + ", but got " + actual; // Test reporting a plug PlugSim plug = new PlugSim("TestPlug"); plug.switchOn(); plug.setPower(123.456); expected = "<html><body><p>Plug TestPlug is on.</p><p>Power reading is 123.456.</p><p><a href='/TestPlug?action=on'>Switch On</a></p><p><a href='/TestPlug?action=off'>Switch Off</a></p><p><a href='/TestPlug?action=toggle'>Toggle</a></p></body></html>"; actual = commands.handleGet("/TestPlug", new HashMap<>()); assert expected.equals(actual) : "testHandleGet failed: expected " + expected + ", but got " + actual; // Test switching a plug on plug.switchOff(); expected = "<html><body><p>Plug TestPlug is on.</p><p>Power reading is 0.000.</p><p><a href='/TestPlug?action=on'>Switch On</a></p><p><a href='/TestPlug?action=off'>Switch Off</a></p><p><a href='/TestPlug?action=toggle'>Toggle</a></p></body></html>"; actual = commands.handleGet("/TestPlug", Map.of("action", "on")); assert expected.equals(actual) : "testHandleGet failed: expected " + expected + ", but got " + actual; // Test switching a plug off plug.switchOn(); expected = "<html><body><p>Plug TestPlug is off.</p><p>Power reading is 0.000.</p><p><a href='/TestPlug?action=on'>Switch On</a></p><p><a href='/TestPlug?action=off'>Switch Off</a></p><p><a href='/TestPlug?action=toggle'>Toggle</a></p></body></html>"; actual = commands.handleGet("/TestPlug", Map.of("action", "off")); assert expected.equals(actual) : "testHandleGet failed: expected " + expected + ", but got " + actual; // Test toggling a plug plug.switchOff(); expected = "<html><body><p>Plug TestPlug is on.</p><p>Power reading is 0.000.</p><p><a href='/TestPlug?action=on'>Switch On</a></p><p><a href='/TestPlug?action=off'>Switch Off</a></p><p><a href='/TestPlug?action=toggle'>Toggle</a></p></body></html>"; actual = commands.handleGet("/TestPlug", Map.of("action", "toggle")); assert expected.equals(actual) : "testHandleGet failed: expected " + expected + ", but got " + actual; // Test handling a non-existent plug expected = null; actual = commands.handleGet("/NonExistentPlug", new HashMap<>()); assert expected == actual : "testHandleGet failed: expected " + expected + ", but got " + actual; } } ```

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值