- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个JavaScript object我正在尝试将其每个类(class)标题附加到克隆的模式中。单击类别(即动物)会打开一个显示动物描述的模式,单击不同的类别会显示不同的描述。我想要的是点击“动物”,并且类(class)“马”、“花栗鼠”、“游隼”等显示在其模式中。
当我尝试console.log
类(class)以便查看它们时,我遇到了一些问题。
这样做:
trainingCrs = _categories[0].Courses.results.map(x => x.Title) // Works but only shows the Course Titles associated with Animals, as expected with the [0]
但是正在做:
allTrain = _categories.Courses.results.map(x => x.Title) // Get an error saying 'results' are undefined
结果
显示为未定义是否有原因?我不确定为什么 _categories[0].Courses
有效,但 _categories.Courses
无效。
以下是我将描述和标题附加到我的 div 中的方法:
axios.get([abs-url] + "/getByTitle('Categories')/items?$select=Title,Description,Courses/Title,SortOrder&$expand=Courses&$orderby=Title&$top=1000",
{
method: "GET",
credentials: "include",
mode: "no-cors",
headers: {
"Accept": "application/json; odata=verbose"
}
}),
]).then(axios.spread((cat) => {
_categories = cat.data.d.results;
// irrelevant info here
this.loadCategories();
})).catch(error => {
console.log(error);
});
loadCategories(){
let categs = _categories,
trainingCrs = _categories[0].Courses.results.map(x => x.Title)
// allTrain = _categories.Courses.results.map(x => x.Title)
console.log(trainingCrs);
// console.log('allTrain' + allTrain);
let catBoxElems = "";
for (var i = 0; i < categs.length; i++) {
catBoxElems +=
"<div class='cat-box cat-num-" + i + "'data-target='#modal-id' data-toggle='modal' data-desc='" + categs[i].Description + "'data-crs='" + trainingCrs[i] + "'data-title='" + categs[i].Title + "'>" + catPic + "<br>" + categs[i].Title + "</div>";
} // trainingCrs[i].Title returns 'undefined', trainingCrs[i] does nnothing
$(document).find("#modal-id").off("shown.bs.modal").on("shown.bs.modal", function(e) {
$(document).find(".modal-title").html($(e.relatedTarget).data("title"));
$(document).find(".category-desc").html($(e.relatedTarget).data("desc"));
$(document).find(".training-titles-ul").html($(e.relatedTarget).data("crs")); // ------------------- //
}).on("hidden.bs.modal", function(e) {
$(document).find(".modal-title").html("");
});
let container = document.querySelector("div.top-training");
container.innerHTML = catBoxElems;
console.log(container);
$(".modal-img").append(catPic)
}
<div class="modal-title" id="exampleModalLabel"></div>
<div class="modal-body">
<div class="category-desc">
<p></p>
</div>
<div class="training-titles">
<ul class="training-titles-ul"></ul>
</div>
</div>
最佳答案
因为_categories
是一个对象数组。数组上没有属性 results
- 只是 array 中的各个对象。 。使用像 [0]
这样的索引器选择数组中的第一项,以便您可以选择 results 属性。
根据您从中检索 _categories 的数据或 API 的来源,始终获取第一个元素/类别可能是完全可以的。许多 API 的返回集合仅包含一项,然后您必须解析或单步执行以提取数据。
class Result {
constructor(title) {
this.Title = title
}
}
class Category {
constructor(category) {
this.Category = category
this.Results = []
}
}
// create a sample category
const category1 = new Category("Test")
// add a fake result set
category1.Results.push(new Result("Result 1"))
// build an array to hold our sample objects
const _categories = []
_categories.push(category1)
// here is your _categories array
console.log(_categories)
// notices how Results don't live on the array itself
console.log(_categories.Results)
// but Results do live on the first item in the array
console.log(_categories[0].Results)
关于javascript - 将 JS obj 值附加到 div 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55905308/
我正在尝试创建键值对并推送到数组,但我得到的只是 [Obj Obj]、[Obj Obj]。我创建了一个传递名称和值的函数,用于将键和值分配给 JavaScript 对象。这是我的代码。不确定我错过了什
似乎在 for 循环的上下文中,关于对象的语法发生了变化。 为什么 console.log() 不应该运行相同的东西?第一个按预期运行,第二个呈现错误“steve is not defined”: v
在 Ady Osmani 的 blog post关于 js 中的命名空间,他提到了 5 个常见做法来测试先前定义的命名空间/对象是否存在以防止覆盖。我在这里复制我关注的 3 个: var myAppl
有没有办法(我怀疑它涉及继承和多态)来区分OBJ o, OBJ& o, const OBJ& o?我希望在 3 个不同的程序中使用相同的代码,并使用相同的方法名称调用不同的方法。 int main()
我正在寻找一个正则表达式来分割这种内容: obj.method(obj.attr,obj.attr2) 我希望拆分返回一个数组: ["obj", "method(obj.attr, obj.attr2
我想知道这些方法中哪种更好: var Obj = Obj || {}; 或 if (Obj === undefined || typeof Obj !== 'object') { Obj = {}
我正在尝试将一个值推送到数组的属性,如下所示 var obj = {}; obj.a = (obj.a || []).push(10); console.log( typeof obj.a );
为了避免误解,我们首先要就某些词语的含义达成一致。以下含义并非普遍接受的含义,我仅建议将它们作为此问题的背景。 function -- Function 的一个实例。它有一个与其关联的过程。 obje
我总是不确定哪个是正确的以及该使用哪个。 通常我会进行(obj == null)检查。我认为最好直接问。 我应该使用以下哪一项: if (obj == null) { alert(
我正在处理一些使用 pygraph 模块的类,当我使用 add_node() 方法时,它总是出现“node xxx already in graph”。所以我尝试使用 deepcopy() 创建一个新
在 this page您可以看到以下示例,了解如何实现数组的indexOf: if (!Array.prototype.indexOf) { Array.prototype.indexOf = f
(1) 和 (2) 之间是否存在任何重要差异(语义、性能相关等)? var obj = obj || {}; var obj = Object(obj); 上下文。第一个是我在 Django 的模板和
我想知道 obj !== obj 什么时候可以为真? 这是我在书上看到的一行代码,我很纳闷。 var result = class2type[(obj == null || obj !== obj)]
我有时会看到这种模式...... obj.method.call(obj, arg) 我不明白为什么它不同于... obj.method(arg) 为什么要使用第一种模式? 我的天啊,似乎引起了很
我刚刚在一段 React 代码中发现了以下结构(名称已更改): 据我了解,bind 只是执行相应的函数,并将函数的 this 设置为第一个参数,并向其传递更多参数。由于 func 已经是我们想要的
当我们查看Underscore.js源码时,我们可以看到如下内容: _.isObject = function (obj) { return obj === Object(obj);
我在将项目发布到本地系统时收到此错误 Copying file obj\Debug\build.force to obj\Release\Package\PackageTmp\obj\Debug\bu
我有一个类型为 Expression> 的现有表达式;它包含类似 cust => cust.Name 的值. 我还有一个父类,其字段类型为 T .我需要一个接受上述作为参数并生成一个以父类 ( TMo
我在当前目录中有 add.c sub.c 并通过 makefile 编译它们。 我做了以下事情: program 1: objs=$(patsubst %.cpp, %.o, $(wildcard *
这个问题在这里已经有了答案: Is there a difference between copy initialization and direct initialization? (9 个回答)
我是一名优秀的程序员,十分优秀!