我从Angular服务中的模型中获取数据,而在控制台日志中,数据就像这样。
ProductName
如何从那里获取{{1}}?
请提前帮助,非常感谢。
答案 0 :(得分:1)
要访问对象的属性,请使用点表示法:
serces.ProductName
或括号表示法:
serces['ProductName']
读完:https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Property_Accessors