使用 DOJO 需要 JSON 个文件
Require JSON file with DOJO
我正在使用 Dojo API 中的 define/declare
来加载模块,但我还想加载 .json 配置文件,但它忽略扩展名并尝试加载 .js 文件
define([
"./Config.json",
"dojo/domReady!"
],
function(
config
){
var config = JSON.parse(config);
console.log(config);
})
通过控制台我可以看到它正在尝试加载“Config.json.js
”而不是“Config.json
”,我该如何解决这个问题?
我认为 dojo/text 插件可以帮助你
尝试按以下方式加载文件(确定文件路径)
define([
"dojo/text!./Config.json",
"dojo/domReady!"
],
function(config){
var config = JSON.parse(config);
console.log(config);
})
我正在使用 Dojo API 中的 define/declare
来加载模块,但我还想加载 .json 配置文件,但它忽略扩展名并尝试加载 .js 文件
define([
"./Config.json",
"dojo/domReady!"
],
function(
config
){
var config = JSON.parse(config);
console.log(config);
})
通过控制台我可以看到它正在尝试加载“Config.json.js
”而不是“Config.json
”,我该如何解决这个问题?
我认为 dojo/text 插件可以帮助你
尝试按以下方式加载文件(确定文件路径)
define([
"dojo/text!./Config.json",
"dojo/domReady!"
],
function(config){
var config = JSON.parse(config);
console.log(config);
})