脚本标签中定义的变量无法从项目中的其他文件访问

时间:2018-06-20 19:41:21

标签: javascript

因此在head标签中,我有以下代码:

<script>var test = ${serialize({firstName, surname})}</script>

在另一个名为config.js的文件中,我有以下内容。

    export default {
    firstName: test.firstName,
    surname: test.surname,
};

现在,当我运行npm lint时,出现以下错误:

 2:15  error  'test' is not defined  no-undef

我想念什么?

0 个答案:

没有答案