我的工程使用require.js加载js文件 今天我把工程中的jquery换成zepto,之后有报错如下: GET http://192.168.0.29:5001/scripts/jquery.js 404 (Not Found) 我搜索了整个工程,没有找到任何使用"jquery"这个词的代码语句,不明白还有什么可能性去加载jquery,各位有什么好办法吗?
配置如下 require.config paths: “zepto” : “…/components/zepto/zepto” “underscore” : “…/components/underscore-amd/underscore” “chai” : “…/components/chai/chai” “woodman” : “…/components/woodman/dist/woodman” “bootstrap-js” : “…/components/bootstrap-js/bootstrap” “backbone” : “…/components/backbone-amd/backbone” "backbone.courier": “…/components/backbone.courier/backbone.courier” “async” : “…/components/async/lib/async” “baidutouch” : “…/components/touch-min-0.2.2/index” “templates” : “…/templates/mobile-app”
# 私有库
app : "lib/app"
router : "lib/mobile-router"
util : "lib/util"
hint : "lib/hint"
cache : "lib/cache"
hotkey : "lib/hotkey"
view : "lib/view"
model : "lib/model"
collection: "lib/collection"
shim: "backbone.courier": [“backbone”] ‘zepto’ : []