in reply to Re^3: perl dancer route template hashref pass complex json file to server issue (module)
in thread perl dancer route template hashref pass complex json file to server issue
under the views I had file test.ttpackage myapp; use Dancer ':syntax'; use File::Slurp qw(read_file write_file read_dir); #use db; use JSON; use Data::Dump qw/ pp /; use DBI; our $VERSION = '0.1'; use Dancer::Plugin::Database; get '/test' => sub { my $jsonobj; $jsonobj='[{"name":"test","problem":"here is the problem \" comma +"}]'; debug $jsonobj; template 'test',{passtoserver=> $jsonobj}; };
I had an error with JSON.parse(test) , when I had browser navigated to http://localhost:3000/test yes your right , when we do that with perl module rather than done by hand is a plus , but teh json file was generated by my website user and I'm just store it in DB , all the work on it just post and get from client and server thanks Rami D.<!DOCTYPE html> <html> <head> </head> <body> <div style = "padding: 100px 100px 10px;"> <script> alert('<%passtoserver%>'); var test='<%passtoserver%>'; alert(JSON.stringify(test)); alert(JSON.parse(test)); </script> <button type="text" > </div> </body> </html>
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: perl dancer route template hashref pass complex json file to server issue (quotes)
by tye (Sage) on Jul 26, 2016 at 18:30 UTC | |
|
Re^5: perl dancer route template hashref pass complex json file to server issue (module)
by Anonymous Monk on Jul 26, 2016 at 18:49 UTC | |
by RamiD (Acolyte) on Jul 27, 2016 at 04:40 UTC | |
by tye (Sage) on Jul 28, 2016 at 04:44 UTC | |
by RamiD (Acolyte) on Jul 28, 2016 at 21:24 UTC | |
by tye (Sage) on Jul 28, 2016 at 22:27 UTC | |
|