如何从其他文件导入字符串到blade.php

uurity8g  于 2022-11-21  发布在  PHP
关注(0)|答案(1)|浏览(135)

我有一个屏幕文件,让说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>
3htmauhk

3htmauhk1#

插入constant.js的script标记后,就可以使用constant.js文件中定义的变量。
screenA.blade.php的示例可能类似于以下代码片段:

<head>
  // path to constant.js file
  <script type="text/javascript" src="constant.js"></script>
  
  <script type="text/javascript">
  
    // Put javascript code here.

    // Try calling the string defined in constant.js here

    // Using console.log( string from constant.js )

  </script>

</head>

相关问题