在系统浏览器中查看ZnClient类,您可以看到以下方法的注释:
formAt:add: - "将key等于值添加到当前请求的application / x-www-form-urlencoded实体。这适用于多值表单字段。"
formAt:put: - "在当前请求的application / x-www-form-urlencoded实体中将密钥设置为等于值。"
formAdd: - &#34;将key-&gt;值关联添加到当前请求的application / x-www-form-urlencoded实体。&#34; < / p>
formAddAll: - &#34;将keyedCollection的所有key-&gt;值关联添加到
当前请求的application / x-www-form-urlencoded实体。&#34;
我们之前的任何q&a都没有使用过formAt:add:,我们应该在这里避免使用| client |
client := ZnClient new url: 'http://server/some-script.cgi'.。使用最后3种方法之一:
client formAt: 'technique' put: 'foo';
formAt: 'resultat' put: 'bar';
formAt: 'conclusion' put: 'baz';
post.
...然后
client formAdd: 'technique' -> 'foo';
formAdd: 'resultat' -> 'bar';
formAdd: 'conclusion' -> 'baz';
post.
...或
client formAddAll: {
'technique' -> 'foo'.
'resultat' -> 'bar'.
'conclusion' -> 'baz'.
} asDictionary; post.
或者这......
$(function() {
$("#slider-container").slider({
range: 'min',
min: 4,
max: 10,
value: 8,
step: 2,
slide: function(event, ui) {
var curValue = ui.value;
var tooltip_Date = '
$(this).find('.ui-slider-handle').html(tooltip_Date);
$("#number_repayments").html(curValue);
if (ui.value < 5) {
$('.system1').css('display', 'block');
$('.system2, .system3, .system4').css('display', 'none');
} else if (ui.value < 7) {
$('.system2').css('display', 'block');
$('.system3, .system1, .system4').css('display', 'none');
} else if (ui.value < 9) {
$('.system3').css('display', 'block');
$('.system2, .system1, .system4').css('display', 'none');
} else if (ui.value > 9) {
$('.system4').css('display', 'block');
$('.system2, .system1, .system3').css('display', 'none');
}
},
create: function(event, ui) {
var curValue = ui.value || 8;
var tooltip_Date = '
$(this).find('.ui-slider-handle').html(tooltip_Date);
$("#number_repayments").html(curValue);
}
});
});
f