Magento 2: Bagaimana fungsi pengiriman sisa api disebut On Checkout?


9

Ketika Anda mengklik "Kirim di sini" pada Halaman Checkout yang dipanggilnya

magento / sisanya / default / V1 / kereta / tambang / estimasi-pengiriman-metode-dengan-alamat-id

Kemudian menuju ke file JS di bawah ini

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;
    }

Bagaimana fungsi di atas estimateByAddressIddipanggil?

Jawaban:


6

Seperti yang Anda tunjukkan, ketika Anda mengklik "Kirim di sini" permintaan HTTP POST dikirim ke "/V1/carts/mine/estimate-shipping-methods-by-address-id"REST API (dari module-quote). Jika Anda melihat module-quote/etc/webapi.xmlAnda akan menemukan 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>

Anda dapat melihat bahwa di bawah <route>elemen ada <service>elemen dengan class="Magento\Quote\Api\GuestShipmentEstimationInterface"dan method="estimateByExtendedAddress". Sekarang jelas, estimateByAddressIdmetode tidak dapat dipakai dari antarmuka.

Di sini datang dalam adegan injeksi ketergantungan magento 2. Lihat module-quote/etc/di.xmlfile yang memetakan Magento\Quote\Api\ShippingMethodManagementInterfaceketergantungan antarmuka ( ) ke kelas implementasi yang disukai ( 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>

Ini adalah bagaimana estimateByAddressIdmetode dipanggil.

Tautan yang bermanfaat:

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/ ekstensi-dev-guide / layanan-kontrak / layanan-ke-web-service.html

Magento 2 Dependency injeksi:
http://devdocs.magento.com/guides/v2.0/extension-dev-guide/depend-inj.html
http://magento-quickies.alanstorm.com/post/68129858943/magento- Antarmuka 2-injecting

Dengan menggunakan situs kami, Anda mengakui telah membaca dan memahami Kebijakan Cookie dan Kebijakan Privasi kami.
Licensed under cc by-sa 3.0 with attribution required.