在本地主机上的Htmlfile起作用,但在heroku上不起作用

时间:2020-10-03 07:03:32

标签: html heroku localhost

我的代码有问题。我除了拥有这种类型的卡以外,它只能在我的本地主机上运行,​​而不能在我的英雄应用程序上运行。 enter image description here

同样,当我检查heroku上的代码时,它没有出现,并且我不明白为什么。 这是应该显示的代码

<div class="container py-3">
  <div class="row">
    <div class="col-sm-12 col-md-6">
      <%= image_tag(@flower.photo_url, width: '100%') %>
    </div>
    <div class="col-sm-12 col-md-6">
      <h1><%= @flower.name %></h1>
      <p>Amount: <%= humanized_money_with_symbol(@flower.price) %></p>
        <%= form_tag orders_path do %>
          <%= hidden_field_tag 'flower_id', @flower.id %>
          <%= submit_tag 'Purchase', class: 'btn btn-primary' %>
        <% end %>
    </div>
  </div>
</div>

这是我部署时实际上显示在我的应用程序上的代码。 enter image description here

预先感谢您的回答。

0 个答案:

没有答案