我是dojo和json的新手。我正在尝试查询服务器以获取 json 格式的数据并解析结果并在小部件中使用 html 模板进行显示。
为了测试它,我尝试了这个。
require(["dojo/request", "dojo/dom", "dojo/dom-construct","dojo/_base/array", "my/widgets/", "dojo/domReady!"],
function(request, dom,domConst, arrayUtil, support){
// Load up our authors
request("js/my/data/sample.json", {
handleAs: "json"
}).then(function(LinksMap){
// Get a reference to our container
arrayUtil.forEach(LinksMap, function(List){
// Create our widget and place it
console.debug(LinksMap);
//var widget = new support(author).placeAt(authorContainer);
不确定我是否做得对。有什么我想念的吗。我正在按照此处提供的示例进行操作并以此为基础。