📄 keywords.al
字号:
# NOTE: Derived from blib\lib\URI\URL\http.pm.
# Changes made here will be lost when autosplit again.
# See AutoSplit.pm.
package URI::URL::http;
#line 16 "blib\lib\URI\URL\http.pm (autosplit into blib\lib\auto/URI\URL\http/keywords.al)"
# Handle ...?dog+bones type of query
sub keywords {
my $self = shift;
$old = $self->{'query'};
if (@_) {
# Try to set query string
$self->equery(join('+', map { URI::Escape::uri_escape($_, $URI::URL::reserved) } @_));
}
return if !defined($old) || !defined(wantarray);
Carp::croak("Query is not keywords") if $old =~ /=/;
map { URI::Escape::uri_unescape($_) } split(/\+/, $old);
}
# end of URI::URL::http::keywords
1;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -