Gro*_*ode 4 jquery refresh ruby-on-rails coffeescript turbolinks
Pinterest 克隆我正在构建。Rails 应用程序 4.1.4。
.
当您从索引页面单击 Pin 时,它会显示页面。
SHOW 页面有一些JavaScript可以调整图片/ DIV 的大小。
.
几乎每次我从索引页面单击 Pin 时,javascript 都不会运行(不会调整图像/div 的大小)。
但是,如果我使用 Web 浏览器单击“刷新”,脚本似乎总是运行得很好(图像/Div 的大小调整得很好)。
.
github上js链接: https : //github.com/growthcode/pinterest/blob/master/app/assets/javascripts/pins.js.coffee
在 Heroku 上尝试一下: https : //growthcode-pinterest.herokuapp.com/
.
SHOW 引脚的 html:
<div class="container">
<div class="row">
<div id="showPinContainer" class="col-xs-12">
<div id="showPin" class="well">
<%= image_tag @pin.image, class: "show-image" %>
<p class="description"><%= @pin.description %></p>
<p><%= @pin.user.name %></p>
<% if current_user == @pin.user %>
<%= link_to 'Edit', edit_pin_path(@pin) %> |
<% end %>
<%= link_to 'Back', pins_path %>
</div>
</div>
</div>
</div>
Run Code Online (Sandbox Code Playgroud)
.
我在 rails 上用咖啡脚本编写了这个,我将列出咖啡脚本和它的“Js2coffee”转换。
咖啡脚本:
# Pin Show page
$ ->
# set jQuery object variables
$windowObj = $(window)
$showPinContainer = $("#showPinContainer")
$showPin = $("#showPin")
$showPinImg = $("#showPin img")
$showPinHeight = $("#showPin").outerHeight()
$showPinImgWidth = $showPinImg.outerWidth()
setShowPinContainerHeight = ->
if $showPinHeight > 450
$showPinContainer.outerHeight( $showPinHeight )
else
$showPinContainer.outerHeight( 450 )
setShowPinContainerWidth = ->
if $showPinImgWidth < 200
$showPinImg.outerWidth( 200 )
else if $showPinImgWidth > 300
$showPinImg.outerWidth( 300 )
setShowPinContainerSize = ->
setShowPinContainerHeight()
setShowPinContainerWidth()
setShowPinContainerSize()
Run Code Online (Sandbox Code Playgroud)
.
上述咖啡脚本的 Js2coffee.com 转换:
$(function() {
var $showPin, $showPinContainer, $showPinHeight, $showPinImg, $showPinImgWidth, $windowObj, setShowPinContainerHeight, setShowPinContainerSize, setShowPinContainerWidth;
$windowObj = $(window);
$showPinContainer = $("#showPinContainer");
$showPin = $("#showPin");
$showPinImg = $("#showPin img");
$showPinHeight = $("#showPin").outerHeight();
$showPinImgWidth = $showPinImg.outerWidth();
setShowPinContainerHeight = function() {
if ($showPinHeight > 450) {
return $showPinContainer.outerHeight($showPinHeight);
} else {
return $showPinContainer.outerHeight(450);
}
};
setShowPinContainerWidth = function() {
if ($showPinImgWidth < 200) {
return $showPinImg.outerWidth(200);
} else if ($showPinImgWidth > 300) {
return $showPinImg.outerWidth(300);
}
};
setShowPinContainerSize = function() {
setShowPinContainerHeight();
return setShowPinContainerWidth();
};
return setShowPinContainerSize();
});
Run Code Online (Sandbox Code Playgroud)
这是我关于 Stack Overflow 的第一个问题,所以如果我能提供任何其他有用的信息,请告诉我。谢谢!
| 归档时间: |
|
| 查看次数: |
2679 次 |
| 最近记录: |