Проблема с формой, не публикующейся с использованием Nginx, Ruby, HAML и Sinatra - PullRequest
0 голосов
/ 02 сентября 2011

Вот мой код в моем файле ask.haml:

 %form{:action => "/calendar", :method => "post"}
            .inputRow
              %label How many days in a row do you work?
              %input#on{:name => "on", :tabindex => "1", :title => "Number of days in a row you work", :type => "text", :value => "4", :id=> "on"}/
            .inputRow
              %label How many days in a row are you off?
              %input#off{:name => "off", :tabindex => "2", :title => "Number of days in a row you're off", :type => "text", :value => "3", :id=> "off"}/
            .inputRow
              %label When is the start of your next block off?
              %input#date{:name => "date", :tabindex => "3", :title => "Start of your next block off", :type => "text", :value => "8/31/2011", :id=> "date"}/
            %button#button{:type => "submit"}

И, когда я запускаю это на своем локальном компьютере, используя дробовик или просто обычный рубин, и запускаю основной файл .rb, он выглядит так:

<form action='/calendar' method='post'> 
          <div class='inputRow'> 
            <label>How many days in a row do you work?</label> 
            <input id='on_on' name='on' tabindex='1' title='Number of days in a row you work' type='text' value='4' /> 
          </div> 
          <div class='inputRow'> 
            <label>How many days in a row are you off?</label> 
            <input id='off_off' name='off' tabindex='2' title="Number of days in a row you're off" type='text' value='3' /> 
          </div> 
          <div class='inputRow'> 
            <label>When is the start of your next block off?</label> 
            <input id='date_date' name='date' tabindex='3' title='Start of your next block off' type='text' value='8/31/2011' /> 
          </div> 
          <button id='button' type='submit'></button> 
        </form> 

Но когда я загружаю его на свой сервер (webfaction) и даже перезапускаю nginx, я получаю следующее:

<form> 
        <div class="inputRow"><label>How many days in a row do you work?</label><input type="text" name="on" value="" id="on"  tabindex="1" placeholder="4" title="Number of days in a row you work" /></div> 
        <div class="inputRow"><label>How many days in a row are you off?</label><input type="text" name="off" value="" id="off"  tabindex="2" placeholder="3" title="Number of days in a row you're off" /></div> 
        <div class="inputRow"><label>When's the start of your next block off?</label><input type="text" name="on" value="" id="on"  tabindex="3" placeholder="8/31/2011" title="Start of your next block off" /></div> 
        <button type="submit" id="button"></button> 
        </form> 

Сообщение и страница, на которую он направляется, отсутствуют. Есть идеи о том, как начать снимать проблемы? Заранее спасибо.

ОБНОВЛЕНИЕ: Поскольку я немного углубился в это, похоже, что nginx загружает старый файл с именем ask.haml. Я подтвердил, что новый файл находится на сервере.

1 Ответ

1 голос
/ 03 сентября 2011

Звучит так, как будто вы можете кэшировать HTML в вашем браузере. Попробуйте открыть другой браузер (или явно очистить кеш браузера) и нацелить его на свое производственное приложение.

...