Magento 2:チェックアウト時の出荷API機能の呼び出し方法


9

チェックアウトページの[ここに発送]をクリックすると、

magento / rest / default / V1 / carts / mine / estimate-shipping-methods-by-address-id

それからJSファイルの下に行きます

magento \ vendor \ magento \ module-checkout \ view \ frontend \ web \ js \ model \ shipping-rate-processor \ customer-address.js

magento \ vendor \ magento \ module-checkout \ view \ frontend \ web \ js \ model \ resource-url-manager.js

getUrlForEstimationShippingMethodsByAddressId: function(quote) {
    var params = (this.getCheckoutMethod() == 'guest') ? {quoteId: quote.getQuoteId()} : {};
    var urls = {
        'default': '/carts/mine/estimate-shipping-methods-by-address-id'
    };
    return this.getUrl(urls, params);
}

magento \ vendor \ magento \ module-quote \ Model \ ShippingMethodManagement.php

 public function estimateByAddressId($cartId, $addressId)
    {
      echo 1;exit;
    }

上記の関数estimateByAddressIdはどのように呼び出されますか?

回答:


6

ご指摘のとおり、「Ship here」をクリックすると、HTTP POSTリクエストが"/V1/carts/mine/estimate-shipping-methods-by-address-id"REST-APIにディスパッチされます(module-quoteから)。あなたが見てみるとmodule-quote/etc/webapi.xmlあなたはURLを見つけるでしょう:

<route url="/V1/carts/mine/estimate-shipping-methods-by-address-id" method="POST">
  <service class="Magento\Quote\Api\ShippingMethodManagementInterface" method="estimateByAddressId"/>
  <resources>
    <resource ref="self" />
  </resources>
  <data>
    <parameter name="cartId" force="true">%cart_id%</parameter>
  </data>
</route>

あなたは下にあることに気づくことができます<route>要素がある<service>と要素class="Magento\Quote\Api\GuestShipmentEstimationInterface"method="estimateByExtendedAddress"。明らかに、estimateByAddressIdメソッドはインターフェースからインスタンス化できません。

ここでは、magento 2の依存関係の注入が行われます。module-quote/etc/di.xmlinterface(Magento\Quote\Api\ShippingMethodManagementInterface)の依存関係を優先実装クラス(Magento\Quote\Model\ShippingMethodManagement)にマップするファイルを見てください。

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

これがestimateByAddressIdメソッドの呼び出し方法です。

役立つリンク:

Magento 2 Web API:
http : //devdocs.magento.com/guides/v2.0/get-started/bk-get-started-api.html
http://devdocs.magento.com/guides/v2.0/ extension-dev-guide / service-contracts / service-to-web-service.html

Magento 2依存性注入:
http : //devdocs.magento.com/guides/v2.0/extension-dev-guide/depend-inj.html
http://magento-quickies.alanstorm.com/post/68129858943/magento- 2注入インターフェース

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.