Questions tagged «magento2-api»


5
Magento 2:如何从API返回JSON对象?
我正在尝试从我的一个REST模型中返回一个JSON对象,如下所示: { "settings": { "set1" : 2, "set2" : "key1" }, "extra": { "e1'" : { "e2'": true } } } 但是,看似琐碎的事情并不容易实现。问题是我不确定接口和模型中的返回类型应该是什么。 <?php namespace AppFactory\Core\Api; /** * @api */ interface SettingsInterface { /** * @return object */ public function get(); } 对象类将返回 { "message": "Class object does not exist", 调用API时。可用的原始类型int,number和array对我不起作用。我不想为每个返回的复杂类型都创建一个类。我怎样才能做到这一点? …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.