在部署宠物商店时遇到的一些坑,给大家总结一下,以免大家多走弯路转载的地址(详细):https://steemit.com/cn/@lucia3/ethereum-pet-shop
启动"npm run dev":bootstrap.min.js:6 Uncaught Error: Bootstrap's JavaScript requires jQueryat bootstrap.min.js:6导致的原因:bootstrap加载的顺序有问题,必须先引用jquery.min.js文件,然后再引用botstrap的js。解决办法: 一:
二: 1.npm install jquery@1.7 2.将下载的node_modules\jquery\tmp\jquery.js文件移至src\js目录下 3.修改index.js文件:
GET https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js net::ERR_PROXY_CONNECTION_FAILED导致原因:无法连接网站解决办法:在index.js文件中将其注释掉;
Uncaught TypeError: url.indexOf is not a function at jQuery.fn.init.jQuery.fn.load (jquery.js:9857) at HTMLDocument.(app.js:132) at mightThrow (jquery.js:3534) at process (jquery.js:3602)导致原因:".load, .unload, and .error, deprecated since jQuery 1.8, are no more. Use .on() to register listeners."解决办法: 1.下载"npm install jquery@1.7",步骤同上 2.修改app.js:132 $(window).load(function()-->$(window).on('load', function(){...}