博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ethereum Pet Shop
阅读量:5013 次
发布时间:2019-06-12

本文共 1114 字,大约阅读时间需要 3 分钟。

在部署宠物商店时遇到的一些坑,给大家总结一下,以免大家多走弯路转载的地址(详细):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(){...}

 

转载于:https://www.cnblogs.com/eilinge/p/10038025.html

你可能感兴趣的文章
How to install ia32-libs in Ubuntu 14.04 LTS (Trusty Tahr)
查看>>
ACM/ICPC 之 模拟 (HNUOJ 13391-换瓶模拟)
查看>>
JavaWeb学习——JSP基础
查看>>
Eclipse tomcat server 无法添加项目
查看>>
黑寡妇黄飞鸿
查看>>
leetcode 217 Contains Duplicate 数组中是否有重复的数字
查看>>
The Ctrl & CapsLock `problem'
查看>>
MyBatis学习总结(二)——使用MyBatis对表执行CRUD操作
查看>>
linux故障判断
查看>>
Leetcode 23. Merge k Sorted Lists(python)
查看>>
Java进阶知识点6:并发容器背后的设计理念 - 锁分段、写时复制和弱一致性
查看>>
Makefile ===> Makefile 快速学习
查看>>
face detection[HR]
查看>>
java性能调优工具
查看>>
C# 其他的Url 文件的路径转化为二进制流
查看>>
cmake使用
查看>>
ios7上隐藏status bar
查看>>
构造方法和全局变量的关系
查看>>
python3基础05(有关日期的使用1)
查看>>
ArrayList的使用方法
查看>>