Rails ActionView ::SyntaxErrorInTemplate (обнаружена синтаксическая ошибка при рендеринге шаблона :)

#ruby-on-rails #ruby

#ruby-на-рельсах #ruby

Вопрос:

Мое приложение rails отлично работает в разработке. но когда я развертываю его в рабочей среде на VPS, страница не загружается.

когда я загружаю пейдж, проводя хвостом по бревну

 tail -f /var/www/myapp/code/log/production.log
 

Я получаю сообщение об ошибке ниже

 INFO -- : [1c740360-49a5-4920-9dfd-47673fbd4eee] Started GET "/" for 27.0.0.1 at 2021-01-04 14:45:11  0000
INFO -- : [1c740360-49a5-4920-9dfd-47673fbd4eee] Processing by DashboardController#index as HTML
INFO -- : [1c740360-49a5-4920-9dfd-47673fbd4eee]   Rendering dashboard/index.html.erb within layouts/application
INFO -- : [1c740360-49a5-4920-9dfd-47673fbd4eee]   Rendered dashboard/index.html.erb within layouts/application (Duration: 1.0ms | Allocations: 394)
INFO -- : [1c740360-49a5-4920-9dfd-47673fbd4eee] Completed 500 Internal Server Error in 3ms (Allocations: 710)
FATAL -- : [1c740360-49a5-4920-9dfd-47673fbd4eee] ActionView::SyntaxErrorInTemplate (Encountered a syntax error while rendering template: check
 

Rails указывает мне на код для app / view / dashboard /index.html.erb, который показан ниже.

     <br><br><br><br><br>

<section>

<div class="block center-text">
  <header class="header-group">
    <h3>Welcome to Igbo Progressive Union, Connecting Igbo's, around the world.</h3>
  </header>
  <div class="row">
    <div class="col-md-12">
    </div>
  </div>
</div>
</section>
<%= flash_messages %>

<section id="welcome">
    <!-- ======= Top banner ======= -->
  <div  class="jumbotron img-centre">
    <div background: url("../images/welcomeimage.jpeg") >
      
      
      <p>
        <br><br><br><br><br><br><br><br>
        <a class="btn btn-primary btn-lg" href="#about">Learn more</a>
      </p>
    </div>
  </div>
</section>
  

<section id="about">
  <div class="panel panel-success">
    <div class="panel-heading">
      <h3 class="panel-title">About IPU</h3>
    </div>
    <div class="panel-body">
      <table class="table-responsive">
        <tbody>
          
          <tr>
            <td><a><%= image_tag "ipu_logo1.jpg", width:"auto", height:"200", alt="ipu_logo" %></a></td>
            <td conspan="7">
              <div class="well">
              <p>We promote, protect and defend the interest of our members and their dependants around the world. We strive to create awareness of our culture and roots among ourselves and our children. Furthermore IPU promotes social interaction amongst the members of the community and and our members to enhance good relations between our Igbo community and other communities in Nigeria, United Kingdom, USA and throughout the world.</p>
            </div>

            </td>
            <td><a><%= image_tag("IMG_6240.JPG", width:"auto", height:"200") %></a></td>
          </tr>
        </tbody>
      </table>
        <div class="well">
          <p>Our goal is to continously promote Igbo language and culture (Omenani) everywhere in the world where Igbo's reside. We provide a common platform for Igbo's to engage in conversations concerning our culture and tradition, and share information to promote our ideologies. There are extended benefits for financial members, that include support in times of need, such as bereavement, child birth, hospitalization and many more. You can participate on our platform as a standard member at no extra cost by registering on our home page. If you enjoy what we are doing and want to support us, please make a voluntary contrubition to support our global efforts. However becoming a financial member, makes you eligible for all benefits and support as stated in our Articles of Association (constitution) as may be amended from time to time by the general assembley.</p>
        </div>

    </div>
  </div>
</section>

<section id="objectives">
  <div class="panel panel-info">
    <div class="panel-heading">
      <h3 class="panel-title">Objectives of IPU</h3>
    </div>
    <div class="panel-body">
      <table class="table-responsive">
        <tbody>
          <tr>
            <td>
              <ol type="1">
                <li>To promote brotherhood, friendship and unity amongst the Igbo community living in Northamptonshire, the United Kingdom, Nigeria, and throughout the world as well as integrating with other communities.</li>
                <li>To support the welfare of IPU members whether that be morally, financially or otherwise in causes which in the opinion of the General Meeting merit the support of members.</li>
                <li>To promote and create awareness of the Igbo Language and culture within Northamptonshire and the United Kingdom in general through cultural events, festivals, seminars, and speaking Igbo.</li>
                <li>To organise lectures and educational trips about Igbo language, culture and heritage to the children of IPU members.</li>
                <li>In accordance with Igbo tradition to observe “OMENANI” where appropriate to do so.</li>
              </ol>
            </td>
            <td><a><%= image_tag("IMG_66131.JPG", width:"auto", height:"200") %></a></td>
          </tr>
        </tbody>
      </table>
    </div>
  </div>
</section>

<section id="contact">
  <div class="panel panel-primary">
    <div class="panel-heading">
      <h3 class="panel-title">Contact Us</h3>
    </div>
    <div class="panel-body">
      <table class="table-responsive">
        <tbody>
            <tr>
              <td><%= image_tag("IMG_62471.JPG", width:"auto", height:"200") %></td>
            <td>
              <p>Pastor  </p>
                <p>Phone:  44</p>
              <br>
              <p>Barr </p>
                <p>Phone:  44</p>
              <br>
              <p>Gideon </p>
                <p>Phone:  44</p>
              <br>
              <p>Chidi  </p>
                <p>Phone:  44</p>
                <br>
              <p>Kingsley </p>
                <p>Phone:  44</p>
            </td>
          </tr>
        </tbody>
      </table>
  </div>
</div>
</section>
 

Моя проблема в том, что я не могу найти никаких синтаксических ошибок. наконец, в довершение всего, ниже выбрасываются ошибки.

 [7897e223-644d-47ba-bc0c-1eb65772a76d] app/views/dashboard/index.html.erb:42: syntax error, unexpected ')', expecting =>
[7897e223-644d-47ba-bc0c-1eb65772a76d] app/views/dashboard/index.html.erb:121: syntax error, unexpected `end', expecting ')'
[7897e223-644d-47ba-bc0c-1eb65772a76d] app/views/dashboard/index.html.erb:42: syntax error, unexpected ')', expecting =>
[7897e223-644d-47ba-bc0c-1eb65772a76d] app/views/dashboard/index.html.erb:121: syntax error, unexpected `end', expecting ')'
[7897e223-644d-47ba-bc0c-1eb65772a76d] app/views/dashboard/index.html.erb:42: syntax error, unexpected ')', expecting =>
[7897e223-644d-47ba-bc0c-1eb65772a76d] app/views/dashboard/index.html.erb:121: syntax error, unexpected `end', expecting ')'
[7897e223-644d-47ba-bc0c-1eb65772a76d] app/views/dashboard/index.html.erb:42: syntax error, unexpected ')', expecting =>
[7897e223-644d-47ba-bc0c-1eb65772a76d] app/views/dashboard/index.html.erb:121: syntax error, unexpected `end', expecting ')'
 

однако у меня даже нет строки 121 в app/views/dashboard/index.html.erb:121, поскольку код завершается до этого в строке 119.

Как я могу найти эту синтаксическую ошибку ?. любые идеи будут приветствоваться. моя конфигурация рабочего сервера показана ниже

Ubuntu 20.04 Ruby 2.7.2 с RVM rvm 1.29.11 Веб-сервер: Пассажирский NGINX База данных: Mysql 8.0

Комментарии:

1. Идеальный. это было оно. большое вам спасибо. сделайте это ответом, чтобы я мог получить к нему доступ.

Ответ №1:

Это всего лишь небольшая опечатка:

 <%= image_tag "ipu_logo1.jpg", width:"auto", height:"200", alt="ipu_logo" %>
 

Заменить alt= на alt: .