私はカスタムの最新のブログテンプレートを作成しました。しかし、サムネイルで表紙画像を表示することはできません。オドーブログカバーの画像が表示されない
表紙画像は、ここでは次のようになります。
私が書かれている表紙画像表示するようにコードを次のようにそれをロードしていないコードイメージを書き込んだ後
<div class="panel">
<t t-set="properties" t-value="json.loads(post.cover_properties)">
<a class="o_panel_cover" t-attf-href="#{blog_url('', ['blog', 'post'], blog=post.blog_id, post=post)}" t-att-style="background-image: #{cover_properties.get('background-image')};">
</a>
</t>
<div class="panel-heading mt0 mb0">
<h4 class="mt0 mb0">
<a t-attf-href="#{blog_url('', ['blog', 'post'], blog=post.blog_id, post=post)}" t-field="post.name"></a>
<span t-if="not post.website_published" class="text-warning">
<span class="fa fa-exclamation-triangle ml8" title="Unpublished"/>
</span>
</h4>
</div>
をこのように表示されます:
イメージを表示するにはどうすればよいですか?
:次のように返されますt-attf-style = "background-image:#{cover_properties.get( 'background-image')};" これは、noneタイプのオブジェクトはattrubute getを持たないと言います。 –