Get postcode and country_id from object mage 2Get admin user session info from external scriptget...

What is the purpose of easy combat scenarios that don't need resource expenditure?

Roman Numerals equation 1

How should I handle players who ignore the session zero agreement?

Would the Vulcan nerve pinch work on a Borg drone?

Why zero tolerance on nudity in space?

Intern applicant asking for compensation equivalent to that of permanent employee

Am I a Rude Number?

A starship is travelling at 0.9c and collides with a small rock. Will it leave a clean hole through, or will more happen?

How can my powered armor quickly replace its ceramic plates?

Explain the objections to these measures against human trafficking

Finding a mistake using Mayer-Vietoris

Do authors have to be politically correct in article-writing?

Why avoid shared user accounts?

It took me a lot of time to make this, pls like. (YouTube Comments #1)

What is 6÷2×(1+2) =?

On a wire designated as '3x14AWG' what does the '3x' part mean?

Who is this Ant Woman character in this image alongside the Wasp?

what does しにみえてる mean?

awk + sum all numbers

Pronunciation of umlaut vowels in the history of German

Find some digits of factorial 17

Publishing research using outdated methods

If I delete my router's history can my ISP still provide it to my parents?

Normalization for two bulk RNA-Seq samples to enable reliable fold-change estimation between genes



Get postcode and country_id from object mage 2


Get admin user session info from external scriptget confirmation before removing item from cart in magento 2?“There has been an error processing your request” in Admin area after installationMagento 2: Plugin class does not existGetting product object inside defaultinvoice.php file for getting custom attribute valuesGet new field address in the payment module (capture function). M2.2.4Monolog Error After 2.2 UpgradeI am trying to override multishipping.php file in vendor/magento/module-multishipping/Model/Checkout/Type/Multishipping.phpMagento2: What is Dependency Injection(Di) and Object Management (Object Manager)?Magento 2 get custom attribute of a single product inside a plugin













4















I get all data from checkout, with the next code:



$objectManager = MagentoFrameworkAppObjectManager::getInstance();
$cart = $objectManager->get('MagentoCheckoutModelCart');
$shippingAddress = $cart->getQuote()->getShippingAddress();
$perri = $shippingAddress->getData();


But i want to get only postcode and country_id from my object, if i use the next code, i can get the specific element:



$perri = $shippingAddress->getData('postcode');


If i use the next code, the log show an error:



$perri = $shippingAddress->getData('postcode');
$perri = $shippingAddress->getData('country_id');


How can i get both items?










share|improve this question














bumped to the homepage by Community 47 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
















  • Hi @Victor What kind of error it's giving?

    – Ankit Shah
    Nov 2 '16 at 2:24











  • Code is working, add more description of error.

    – Suresh Chikani
    Nov 2 '16 at 5:44
















4















I get all data from checkout, with the next code:



$objectManager = MagentoFrameworkAppObjectManager::getInstance();
$cart = $objectManager->get('MagentoCheckoutModelCart');
$shippingAddress = $cart->getQuote()->getShippingAddress();
$perri = $shippingAddress->getData();


But i want to get only postcode and country_id from my object, if i use the next code, i can get the specific element:



$perri = $shippingAddress->getData('postcode');


If i use the next code, the log show an error:



$perri = $shippingAddress->getData('postcode');
$perri = $shippingAddress->getData('country_id');


How can i get both items?










share|improve this question














bumped to the homepage by Community 47 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
















  • Hi @Victor What kind of error it's giving?

    – Ankit Shah
    Nov 2 '16 at 2:24











  • Code is working, add more description of error.

    – Suresh Chikani
    Nov 2 '16 at 5:44














4












4








4


1






I get all data from checkout, with the next code:



$objectManager = MagentoFrameworkAppObjectManager::getInstance();
$cart = $objectManager->get('MagentoCheckoutModelCart');
$shippingAddress = $cart->getQuote()->getShippingAddress();
$perri = $shippingAddress->getData();


But i want to get only postcode and country_id from my object, if i use the next code, i can get the specific element:



$perri = $shippingAddress->getData('postcode');


If i use the next code, the log show an error:



$perri = $shippingAddress->getData('postcode');
$perri = $shippingAddress->getData('country_id');


How can i get both items?










share|improve this question














I get all data from checkout, with the next code:



$objectManager = MagentoFrameworkAppObjectManager::getInstance();
$cart = $objectManager->get('MagentoCheckoutModelCart');
$shippingAddress = $cart->getQuote()->getShippingAddress();
$perri = $shippingAddress->getData();


But i want to get only postcode and country_id from my object, if i use the next code, i can get the specific element:



$perri = $shippingAddress->getData('postcode');


If i use the next code, the log show an error:



$perri = $shippingAddress->getData('postcode');
$perri = $shippingAddress->getData('country_id');


How can i get both items?







magento2






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 1 '16 at 20:33









victorvictor

261




261





bumped to the homepage by Community 47 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.







bumped to the homepage by Community 47 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.















  • Hi @Victor What kind of error it's giving?

    – Ankit Shah
    Nov 2 '16 at 2:24











  • Code is working, add more description of error.

    – Suresh Chikani
    Nov 2 '16 at 5:44



















  • Hi @Victor What kind of error it's giving?

    – Ankit Shah
    Nov 2 '16 at 2:24











  • Code is working, add more description of error.

    – Suresh Chikani
    Nov 2 '16 at 5:44

















Hi @Victor What kind of error it's giving?

– Ankit Shah
Nov 2 '16 at 2:24





Hi @Victor What kind of error it's giving?

– Ankit Shah
Nov 2 '16 at 2:24













Code is working, add more description of error.

– Suresh Chikani
Nov 2 '16 at 5:44





Code is working, add more description of error.

– Suresh Chikani
Nov 2 '16 at 5:44










2 Answers
2






active

oldest

votes


















0














Magento recommends using API interfaces to fetch data.
You can use MagentoQuoteApiDataAddressInterface to get postcode and country_id
Using ObjectManager directly is not a good practice.



You can read more about API and interfaces at http://vinaikopp.com/2017/02/18/magento2_repositories_interfaces_and_webapi/






share|improve this answer































    -1














    Try Below Code it's working fine for me :



    $quote      = $objectManager->get('MagentoCheckoutModelCart');
    $address = $quote->getQuote()->getShippingAddress();
    $postcode = $address->getData('postcode');
    echo("<script>console.log('PHP: ".($postcode)."');</script>");





    share|improve this answer





















    • 1





      Always give explanation about code while answering question.

      – Jai
      May 29 '18 at 11:27











    Your Answer








    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "479"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: false,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: null,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f143611%2fget-postcode-and-country-id-from-object-mage-2%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    Magento recommends using API interfaces to fetch data.
    You can use MagentoQuoteApiDataAddressInterface to get postcode and country_id
    Using ObjectManager directly is not a good practice.



    You can read more about API and interfaces at http://vinaikopp.com/2017/02/18/magento2_repositories_interfaces_and_webapi/






    share|improve this answer




























      0














      Magento recommends using API interfaces to fetch data.
      You can use MagentoQuoteApiDataAddressInterface to get postcode and country_id
      Using ObjectManager directly is not a good practice.



      You can read more about API and interfaces at http://vinaikopp.com/2017/02/18/magento2_repositories_interfaces_and_webapi/






      share|improve this answer


























        0












        0








        0







        Magento recommends using API interfaces to fetch data.
        You can use MagentoQuoteApiDataAddressInterface to get postcode and country_id
        Using ObjectManager directly is not a good practice.



        You can read more about API and interfaces at http://vinaikopp.com/2017/02/18/magento2_repositories_interfaces_and_webapi/






        share|improve this answer













        Magento recommends using API interfaces to fetch data.
        You can use MagentoQuoteApiDataAddressInterface to get postcode and country_id
        Using ObjectManager directly is not a good practice.



        You can read more about API and interfaces at http://vinaikopp.com/2017/02/18/magento2_repositories_interfaces_and_webapi/







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered May 29 '18 at 13:17









        Anshu MishraAnshu Mishra

        5,33252660




        5,33252660

























            -1














            Try Below Code it's working fine for me :



            $quote      = $objectManager->get('MagentoCheckoutModelCart');
            $address = $quote->getQuote()->getShippingAddress();
            $postcode = $address->getData('postcode');
            echo("<script>console.log('PHP: ".($postcode)."');</script>");





            share|improve this answer





















            • 1





              Always give explanation about code while answering question.

              – Jai
              May 29 '18 at 11:27
















            -1














            Try Below Code it's working fine for me :



            $quote      = $objectManager->get('MagentoCheckoutModelCart');
            $address = $quote->getQuote()->getShippingAddress();
            $postcode = $address->getData('postcode');
            echo("<script>console.log('PHP: ".($postcode)."');</script>");





            share|improve this answer





















            • 1





              Always give explanation about code while answering question.

              – Jai
              May 29 '18 at 11:27














            -1












            -1








            -1







            Try Below Code it's working fine for me :



            $quote      = $objectManager->get('MagentoCheckoutModelCart');
            $address = $quote->getQuote()->getShippingAddress();
            $postcode = $address->getData('postcode');
            echo("<script>console.log('PHP: ".($postcode)."');</script>");





            share|improve this answer















            Try Below Code it's working fine for me :



            $quote      = $objectManager->get('MagentoCheckoutModelCart');
            $address = $quote->getQuote()->getShippingAddress();
            $postcode = $address->getData('postcode');
            echo("<script>console.log('PHP: ".($postcode)."');</script>");






            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited May 29 '18 at 12:35

























            answered May 29 '18 at 11:21









            RishiRishi

            12




            12








            • 1





              Always give explanation about code while answering question.

              – Jai
              May 29 '18 at 11:27














            • 1





              Always give explanation about code while answering question.

              – Jai
              May 29 '18 at 11:27








            1




            1





            Always give explanation about code while answering question.

            – Jai
            May 29 '18 at 11:27





            Always give explanation about code while answering question.

            – Jai
            May 29 '18 at 11:27


















            draft saved

            draft discarded




















































            Thanks for contributing an answer to Magento Stack Exchange!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f143611%2fget-postcode-and-country-id-from-object-mage-2%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            “%fieldName is a required field.”, in Magento2 REST API Call for GET Method Type The Next...

            How to change City field to a dropdown in Checkout step Magento 2Magento 2 : How to change UI field(s)...

            夢乃愛華...