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
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
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.
add a comment |
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
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
add a comment |
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
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
magento2
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
add a comment |
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
add a comment |
2 Answers
2
active
oldest
votes
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/
add a comment |
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>");
1
Always give explanation about code while answering question.
– Jai
May 29 '18 at 11:27
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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/
add a comment |
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/
add a comment |
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/
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/
answered May 29 '18 at 13:17
Anshu MishraAnshu Mishra
5,33252660
5,33252660
add a comment |
add a comment |
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>");
1
Always give explanation about code while answering question.
– Jai
May 29 '18 at 11:27
add a comment |
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>");
1
Always give explanation about code while answering question.
– Jai
May 29 '18 at 11:27
add a comment |
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>");
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>");
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
add a comment |
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
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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