我想知道如何正确访问对象的对象。我有JSON API,我必须从它获取一些数据。 仅供我使用VueJS,但我认为这不重要。
{
"name": "Foo Bar",
"details": {
"color": "black",
"slug": "foobar",
"author": "John",
"material": "Plastic"
}
}
我怎样才能访问例如slug?这些数据存储在称为product(VueJS Dev Tools)的父对象中
答案 0 :(得分:0)
$(document).ready(function(){
$("input").focus(function(){
$("input[type='submit']").addClass("changeBg");
});
$("input").focusout(function(){
$("input[type='submit']").removeClass("changeBg");
});
});