我有一个屏幕文件,让说screenA.blade.php
。在这个文件中,我想调用一个常量文件,存储一些字符串,让说constant.js
。
这可能吗?
这是我在screenA.blade.php
里面的东西
<head>
<script>
...
// some of js code here
// want call string from constant.js here
// console.log(string from constant.js)
...
<script>
<head>
1条答案
按热度按时间3htmauhk1#
插入
constant.js
的script标记后,就可以使用constant.js
文件中定义的变量。screenA.blade.php
的示例可能类似于以下代码片段: