Javascript模型中的访问对象

时间:2016-07-10 00:17:07

标签: javascript angularjs

我从Angular服务中的模型中获取数据,而在控制台日志中,数据就像这样。

ProductName

如何从那里获取{{1}}?

请提前帮助,非常感谢。

1 个答案:

答案 0 :(得分:1)

要访问对象的属性,请使用点表示法:

serces.ProductName

或括号表示法:

serces['ProductName']

读完:https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Property_Accessors