gpt4 book ai didi

javascript - 如何在早午餐中使用 jquery

转载 作者:行者123 更新时间:2023-12-01 05:34:42 24 4
gpt4 key购买 nike

我正在尝试设置主干应用程序,但收到“$ 未定义”错误。

Tree : 
app :/
app.js
js :/
jquery.js
underscore.js
backbone.js

我有一个早午餐的 config.coffee 文件:

exports.config =   paths:
public: 'www' files:
javascripts:
joinTo:
'js/atf.js': /^app/
order:
before: [
'app/js/jquery-2.0.2.min.js',
'app/js/underscore.js',
'app/js/backbone.js'
]

stylesheets:
joinTo:
'css/atf.css': /^app/

templates:
joinTo: 'js/atf.js'

我的index.html文件:

<!doctype html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="fr"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="fr"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang="fr"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="fr" x-manifest="/manifest.appcache"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Test</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="stylesheet" type="text/css" media="all" href="/css/atf.css?v=2">
<script src="/socket.io/socket.io.js"></script>
<script src="/js/atf.js?v=3"></script>
<script>require('app');</script>
</head>
<body></body>
</html>

我的 app.js 文件只是为了进行测试:

$(function(){
alert('test');
});

有人可以帮助我吗?谢谢!

最佳答案

将文件从app/js移动到vendor(创建此目录)。并将 javascripts.joinTo 更改为您在 templates 中使用的同一个。

这应该可以解决问题。

关于javascript - 如何在早午餐中使用 jquery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34810214/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com