Magento 2: ¿Cómo se llama la función de envío de la API de descanso al finalizar la compra?


9

Cuando haces clic en "Enviar aquí" en la página de pago, se llama

magento / rest / default / V1 / carts / mine / estimación-envío-métodos-por-dirección-id

Luego va a los archivos JS a continuación

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

¿Cómo estimateByAddressIdse llama la función anterior ?

Respuestas:


6

Como señaló, cuando hace clic en "Enviar aquí", se envía una solicitud POST HTTP a la "/V1/carts/mine/estimate-shipping-methods-by-address-id"API REST (desde la cotización del módulo). Si echas un vistazo module-quote/etc/webapi.xml, encontrarás la 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>

Puede notar que debajo del <route>elemento hay un <service>elemento con class="Magento\Quote\Api\GuestShipmentEstimationInterface"y method="estimateByExtendedAddress". Ahora, obviamente, el estimateByAddressIdmétodo no puede ser instanciado desde una interfaz.

Aquí entra en escena la inyección de dependencia de magento 2. Mire el module-quote/etc/di.xmlarchivo que asigna una Magento\Quote\Api\ShippingMethodManagementInterfacedependencia de interfaz ( ) a una clase de implementación preferida ( 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>

Así es como estimateByAddressIdse llama al método.

Enlaces útiles:

API web de Magento 2:
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-contratos / service-to-web-service.html

Inyección de dependencia de Magento 2:
http://devdocs.magento.com/guides/v2.0/extension-dev-guide/depend-inj.html
http://magento-quickies.alanstorm.com/post/68129858943/magento- 2 interfaces de inyección

Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.