Let's say that I have a page which is encoded in 'cp1251' and I submit a form then my params will be in 'cp1251'. But when I access my params in Dancer I get only '?'marks. How can I access the data which is passed?


Update:

There seems to be a sub called _decode /bellow/ in Request.pm which is called on every parameter. Is there a way to tell Dancer not to call this sub?

sub _decode {
    my ($h) = @_; 
    return if not defined $h; 

    if (!ref($h) && !utf8::is_utf8($h)) {
        return decode('UTF-8', $h);
    }   

    if (ref($h) eq 'HASH') {
        while (my ($k, $v) = each(%$h)) {
            $h->{$k} = _decode($v);
        }   
        return $h; 
    }   

    if (ref($h) eq 'ARRAY') {
        return [ map { _decode($_) } @$h ];
    }   

    return $h; 
}

Update2:

I found a way to get the data. I had to use request->{_http_body}->{param} but I shouldn't call params before it because it will corrupt it.


Update3:

To make it work I had to remove the charset from the 'config.yaml' and to add

request->{_params_are_decoded} = 1; in a before filter.

link|improve this question

Out of curiosity, for what reason are you avoiding UTF-8? – ikegami Oct 12 '11 at 0:00
feedback

1 Answer

up vote 0 down vote accepted

The automatic enoding only happens when the "charset" setting is set.

Disable it in config.yml and you are done.

link|improve this answer
When I do this, the logger crashes.. t => sub { Encode::decode(setting('charset') at Logger/Abstract.pm – bliof Oct 13 '11 at 9:42
Interesting, could you report that bug on the GitrHub page please: github.com/sukria/Dancer/issues – sukria Oct 14 '11 at 8:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.