JSON使用替代文件路径

时间:2018-10-25 22:08:55

标签: javascript json

JSON对象是否可以检查文件路径,如果不存在,则使用默认路径?

最终我需要它来做到这一点:(逻辑表示)

{  
   "filePath": "path/to/custom" ? "path/to/custom" : "path/to/default" 
}

1 个答案:

答案 0 :(得分:0)

您可以将不同的路径添加到数组。喜欢:

{
    "filePath": [..., ...]
}

或者如果您只需要两条路径:

{
    "filePath": {custom: ..., default: ...}
}.

您必须找到一种检查路径是否存在的方法。