當我運行此腳本並打開http://my_server/picture
時,我得到的圖片是logo
-string。Mojolicious :: Lite - 插入圖片問題
#!/usr/local/bin/perl
use warnings;
use 5.014;
use Mojolicious::Lite;
get '/picture' => sub {
shift->render();
};
app->start;
__DATA__
@@ picture.html.ep
<!DOCTYPE HTML>
<html>
<body>
<p>Hello</p>
<img src="/absolute/path/TEST.jpg" alt="logo" />
<p>World</p>
</body>
</html>
當我打開這個HTML-piece作爲普通的HTML文件時,我得到了圖片。
什麼是正確的方式,插入與Mojolicious ::精簡版圖片?