到目前为止,这是我对perl的一点知识......
angularjs
template
通过src
属性向perl子例程请求图片:
<img width="200px" height="200px" src="http://localhost:3000/returnimage" />
Perl(Dancer)子程序:
any ['get', 'post'] => '/returnimage' => sub {
content_type 'image/jpeg;base64;';
'data:image/jpeg;base64,/9j/4gIcSUNDX1B....N5f2hqE//Z';
};
我不应该返回数据uri吗?我应该退回图像吗?如果是这样,如何从图像数据uri做到这一点?