ข้อผิดพลาด Magento2 REST API 'ไม่มีคลาส'


12

ฉันได้สร้าง Magento 2.0.2 REST web service ตามบล็อกของ Alan: http://alankent.me/2015/07/24/creating-a-new-rest-web-service-in-magento-2/

ฉันใช้บุรุษไปรษณีย์เพื่อโทรหาบริการเว็บที่กำหนดเองและได้รับข้อผิดพลาดต่อไปนี้:

"message": "Class  does not exist",
  "code": -1,
  "trace": "#0 P:\\wwwroot\\Magento202_com_loc\\Web\\vendor\\magento\\framework\\Webapi\\ServiceInputProcessor.php(128): ReflectionClass->__construct('')\n#1 P:\\wwwroot\\Magento202_com_loc\\Web\\vendor\\magento\\framework\\Webapi\\ServiceInputProcessor.php(262): Magento\\Framework\\Webapi\\ServiceInputProcessor->_createFromArray(NULL, '30')\n#2 P:\\wwwroot\\Magento202_com_loc\\Web\\vendor\\magento\\framework\\Webapi\\ServiceInputProcessor.php(99): Magento\\Framework\\Webapi\\ServiceInputProcessor->convertValue('30', NULL)\n#3 P:\\wwwroot\\Magento202_com_loc\\Web\\vendor\\magento\\module-webapi\\Controller\\Rest.php(262): Magento\\Framework\\Webapi\\ServiceInputProcessor->process('Test\\\\Calculator...', 'add', Array)\n#4 P:\\wwwroot\\Magento202_com_loc\\Web\\vendor\\magento\\module-webapi\\Controller\\Rest.php(160): Magento\\Webapi\\Controller\\Rest->processApiRequest()\n#5 P:\\wwwroot\\Magento202_com_loc\\Web\\var\\generation\\Magento\\Webapi\\Controller\\Rest\\Interceptor.php(24): Magento\\Webapi\\Controller\\Rest->dispatch(Object(Magento\\Framework\\App\\Request\\Http))\n#6 P:\\wwwroot\\Magento202_com_loc\\Web\\vendor\\magento\\framework\\App\\Http.php(115): Magento\\Webapi\\Controller\\Rest\\Interceptor->dispatch(Object(Magento\\Framework\\App\\Request\\Http))\n#7 P:\\wwwroot\\Magento202_com_loc\\Web\\vendor\\magento\\framework\\App\\Bootstrap.php(258): Magento\\Framework\\App\\Http->launch()\n#8 P:\\wwwroot\\Magento202_com_loc\\Web\\index.php(39): Magento\\Framework\\App\\Bootstrap->run(Object(Magento\\Framework\\App\\Http))\n#9 {main}"

ฉันสามารถโทรหาบริการเว็บ REST ของ Magento ได้อย่างประสบความสำเร็จ

app / รหัส / ทดสอบ / เครื่องคิดเลข / registration.php

<?php

\Magento\Framework\Component\ComponentRegistrar::register(
\Magento\Framework\Component\ComponentRegistrar::MODULE,
'Test_Calculator',
__DIR__
);

app / รหัส / ทดสอบ / เครื่องคิดเลข / etc / module.xml

<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
    <module name="Test_Calculator" setup_version="1.0.0"/>
</config>

app / รหัส / ทดสอบ / เครื่องคิดเลข / etc / webapi.xml

<?xml version="1.0"?>
<routes xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Webapi:etc/webapi.xsd">

    <route url="/V1/calculator/add/:num1/:num2" method="GET">
        <service class="Test\Calculator\Api\CalculatorInterface" method="add"/>
        <resources>
            <resource ref="anonymous"/>
        </resources>
    </route>
</routes>

app / รหัส / ทดสอบ / เครื่องคิดเลข / etc / di.xml

<?xml version="1.0"?>

<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
    <preference for="Test\Calculator\Api\CalculatorInterface" type="Test\Calculator\Model\Calculator" />
</config>

app / รหัส / ทดสอบ / เครื่องคิดเลข / Api / CalculatorInterface.php

<?php

namespace Test\Calculator\Api;

interface CalculatorInterface
{
    public function add($num1, $num2);
}

app / รหัส / ทดสอบ / เครื่องคิดเลข / รุ่น / Calculator.php

<?php

namespace Test\Calculator\Model;

use Test\Calculator\Api\CalculatorInterface;

class Calculator implements CalculatorInterface
{
    public function add($num1, $num2) {
        return $num1 + $num2;
    }
}

URL REST ที่ส่งคืนข้อผิดพลาด:

http://local.magento202.com:81/index.php/rest/V1/calculator/add/30/70

คำตอบ:


27

ต้องใช้ DocBlock ในแอป / รหัส / ทดสอบ / เครื่องคำนวณ / Api / CalculatorInterface.php ดังที่อธิบายไว้ที่นี่: http://devdocs.magento.com/guides/v2.0/coding-standards/docblock-standard-general.html

<?php

namespace Test\Calculator\Api;

interface CalculatorInterface
{
    /**
     * Add two numbers.
     *
     * @param int $num1
     * @param int $num2
     * @return int
     */
    public function add($num1, $num2);
}

1
ฉันได้รับข้อผิดพลาดเดียวกันเนื่องจากฉันใช้ @params แทน "@param" วีโอไอพี 2 เข้มงวดเกินไปในมาตรฐานรหัส: P
Altaf Hussain

ฉันควรเขียนอะไรเป็นค่าส่งคืนถ้าฉันต้องการ return json array
Bhupendra Jadeja

[at] return array @Bhupendra Jadeja
Ying Style

@AltafHussain ฉันรู้มา 2 ปีแล้ว แต่ไม่มีอะไรเกี่ยวข้องกับมาตรฐานการเข้ารหัสใช้การตรวจสอบความถูกต้องดังนั้นจึงไม่สามารถหา "@param" มันจะทำให้จุดแตกว่างเปล่า มันก็เหมือนกับการที่คุณตั้ง $ และต่อมาต้องการที่จะให้ใช้เป็น $ ข แต่มาตรฐาน PHP เข้มงวดเกินไป
DarkMukke

คุณครับเป็นฮีโร่ของฉัน ขอขอบคุณ. ฉันไม่เคยคิดว่าจะมีความสำคัญ แต่มันแก้ไขปัญหาของฉัน
seanbreeden

4

ในกรณีที่ปัญหาของฉันคือฉันใช้ clausule "ใช้" ในอินเทอร์เฟซ Magento DocBlockReflection ไม่สามารถจัดการได้และกำลังค้นหาส่วนต่อประสานที่ไม่มีเนมสเปซเต็ม ตัวอย่างเช่นในรหัสร้อง:

use My\Namespace\ExampleObjectInterface
interface ExampleObjectRepositoryInterface
{
/**
 * xyz
 * @param int $id
 * @return ExampleObjectInterface
 * @throws \Magento\Framework\Exception\NoSuchEntityException
 * @throws \Magento\Framework\Exception\LocalizedException
 */
public function getById($id);
}

ฉันต้องการลบส่วนคำสั่ง "use":

interface ExampleObjectRepositoryInterface
{
/**
 * xyz
 * @param int $id
 * @return \My\Namespace\ExampleObjectInterface
 * @throws \Magento\Framework\Exception\NoSuchEntityException
 * @throws \Magento\Framework\Exception\LocalizedException
 */
public function getById($id);
}

โอ้คุณช่วยชีวิตฉันไว้แล้ว ฉันแก้จุดบกพร่องนี้เป็นเวลาหลายชั่วโมง เหตุใดระบบวีโอไอพีจึงใช้งานได้ยาก :(
Alex

1

ตรวจสอบให้แน่ใจว่าคำสั่งด้านล่างดำเนินการสำเร็จ อย่าขัดจังหวะหรือกดสาย API หลังจากดำเนินการแล้วปัญหาของคุณจะได้รับการแก้ไข ทำงานให้ฉัน

php bin/magento setup:di:compile
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.