我遇到一个奇怪的问题。如果我使用这样的值设置变量direclty:“ const myString ='someWord';” 那行得通,但是如果我从类似“ const myString = someVariable;”这样的变量中获取值,那是行不通的,并且如果我在一个也不起作用的条件块上设置了值。
因此,工作:
var jsonName = 'tramwayen';
const pathex = require('../assets/JSON/' + jsonName);
var json = JSON.parse(JSON.stringify(pathex));
不起作用:
var jsonName = variable;
const pathex = require('../assets/JSON/' + jsonName);
var json = JSON.parse(JSON.stringify(pathex));
不起作用:
var jsonName = '';
if (condition) {
jsonName = 'tramwayen';
}
const pathex = require('../assets/JSON/' + jsonName);
var json = JSON.parse(JSON.stringify(pathex));
我真的不明白
我遇到了这个错误:“第41行的调用无效:require('../ assets / JSON /'+ jsonName2)”
holdtom
慕码人2483693
相关分类