admin管理员组文章数量:1351988
This message appears in my console:
Loading failed for the
<script>
with source“http://localhost:8000/lib/js/config.js”
.
The message appears after adding this in head:
<head>
<link href=".4.0/css/font-awesome.min.css" rel="stylesheet">
<link href="lib/css/emoji.css" rel="stylesheet">
<script src="lib/js/config.js"></script>
<script src="lib/js/util.js"></script>
<script src="lib/js/jquery.emojiarea.js"></script>
<script src="lib/js/emoji-picker.js"></script>
Knowing that I make chat system in laravel with vue and socket and I will add emoji in input (send message).
I added this in vue.js to make emoji picker:
<input data-emojiable="true" v-model="message" @keyup.enter="sendMessage"
id="btn-input" type="text" class="form-control input-sm"
placeholder="Type your message here..." />
This message appears in my console:
Loading failed for the
<script>
with source“http://localhost:8000/lib/js/config.js”
.
The message appears after adding this in head:
<head>
<link href="https://maxcdn.bootstrapcdn./font-awesome/4.4.0/css/font-awesome.min.css" rel="stylesheet">
<link href="lib/css/emoji.css" rel="stylesheet">
<script src="lib/js/config.js"></script>
<script src="lib/js/util.js"></script>
<script src="lib/js/jquery.emojiarea.js"></script>
<script src="lib/js/emoji-picker.js"></script>
Knowing that I make chat system in laravel with vue and socket and I will add emoji in input (send message).
I added this in vue.js to make emoji picker:
<input data-emojiable="true" v-model="message" @keyup.enter="sendMessage"
id="btn-input" type="text" class="form-control input-sm"
placeholder="Type your message here..." />
Share
Improve this question
edited Nov 7, 2018 at 21:37
Phil
165k25 gold badges262 silver badges267 bronze badges
asked Nov 7, 2018 at 19:37
amany alshalatoniamany alshalatoni
471 gold badge1 silver badge6 bronze badges
4
-
Does the
lib/js/config.js
file exist? – Phil Commented Nov 7, 2018 at 21:38 - OR ALSO: are you running it in that port? You might have hardcoded a port for some reason and running on a different one? – Fallenreaper Commented Nov 7, 2018 at 22:06
-
try this one:
<script src="/lib/js/config.js"></script>
– Mahdi Jedari Commented Nov 7, 2018 at 22:06 -
<script src="{{ asset('lib/js/config.js') }}"></script>
inspect your browser and check network tab. I pretty sure that your path is wrong... – Truong Dang Commented Nov 8, 2018 at 2:17
2 Answers
Reset to default 3You could elaborate a little in that question, that would help, from my experience (it has happened to my a couple of times), it could be that the web navigator that you are using have a add blocker installed, if correct, try to disable it and try again.
If it don't work, try using another web navigator, i got a similar problem but only in Firefox(it wouldn't fix the problem but at least would narrow it a little).
If you still get the problem you can try to access that URL to see if the link is really that one.
As a bonus try using the helper instead of the hard-coded link,
<script src="{{asset('lib/js/config.js')}}"></script>
For me, following meta
tag in header
caused the problem:
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
I removed the above meta
tag and it worked fine.
本文标签:
版权声明:本文标题:javascript - Loading failed for the <script> with source “http:localhost:8000libjsjquery.emojiarea.js” - Stack Ove 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743905849a2559506.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论