- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 list 文件 partials.js
,其中包含:
//= require_tree ./partials
然后 ./partials/
中的每个咖啡文件都包含以下内容:
$ ->
# Rest of the code
是否有可能在 list 中有这样的东西:
$(function () {
//= require_tree ./partials
});
并删除单个文件中的 $ ->
包装?
(目前这实际上不起作用。代码被推到底部,上面有所需的js。)
最佳答案
我最近遇到了同样的问题,我最终做的是:
以你的明显例子为例:
$(function () {
//= require_tree ./partials
});
我们可以将它变成如下所示的 list :
//= require ./head
//= require_tree ./partials
//= require ./tail
然后我们制作head.js
:
$(function (){ //need line to end with semicolon to trick preprocessor;
然后我们制作tail.js
:
});
诀窍是以注释分号结束 head.js 部分。否则,预处理器将尝试注入(inject)一个分号来破坏脚本,从而产生类似这样的东西
$(function () {
;
//rest of your code here
});
关于javascript - 在 javascript 闭包中包装一些 Assets 需求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10292631/
我在一个简单的 GTK 应用程序中有两个小部件: extern crate gdk; extern crate gtk; use super::desktop_entry::DesktopEntry;
我想做这样的事情: const vegetableColors = {corn: 'yellow', peas: 'green'}; const {*} = vegetableColors; cons
该属性它存储在 gradle 中的什么位置? subprojects { println it.class.name // DefaultProject_Decorated depen
我想在 jQuery 闭包中看到窗口属性“otherName”描述符。但 进入 jQuery 闭包 'otherName' 描述符显示未定义,我认为可能 是 getOwnPropertyDescrip
我曾经看过 Douglas Crockford 的一次演讲,在 javascript 的上下文中,他提到将 secret 存储在闭包中可能很有用。 我想这可以在 Java 中像这样天真地实现: pub
我很难理解 Swift 中闭包中真正发生的事情,希望有人能帮助我理解。 class MyClass { func printWhatever(words: String) {
我有两个 3 表:用户、个人资料、friend_request $my_profile_id变量存储用户个人资料ID的值 $my_user_id = Auth::user()->id; $my_pro
我正在尝试通过使用 GLFW 的包装来学习 Swift GLFW 允许添加错误回调: GLFWAPI GLFWerrorfun glfwSetErrorCallback(GLFWerrorfun cb
我是一名优秀的程序员,十分优秀!