{"id":1648,"date":"2022-02-19T05:56:04","date_gmt":"2022-02-19T05:56:04","guid":{"rendered":"https:\/\/dapliw.org\/?p=1648"},"modified":"2022-02-19T05:56:04","modified_gmt":"2022-02-19T05:56:04","slug":"javascript-capturar-variables-de-php","status":"publish","type":"post","link":"https:\/\/saemas.com\/sitio_web\/javascript-capturar-variables-de-php\/","title":{"rendered":"Javascript &#8211; Capturar variables de Php"},"content":{"rendered":"\n<p>En la vista:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;?php $variable_texto_ejemplo = \"Variable texto ejemplo\"; ?>\n&lt;?php $variable_numero_ejemplo = 25; ?>\n\n&lt;?php $vector_ejemplo = &#91;'1' => 'uno', '2' => 'dos', '3' => 'tres', '4' => 'cuatro', '5' => 'cinco']; ?>\n\n&lt;?php $objeto_ejemplo = (object)$vector_ejemplo; ?>\n\n&lt;div id=\"url-base\" data-url-base={{ URL::to('\/').'\/'.app()->getLocale().'\/solicitudes\/' }}>&lt;\/div>\n\n&lt;div id=\"variable-texto-ejemplo\" data-variable-texto-ejemplo=\"{{ $variable_texto_ejemplo }}\">&lt;\/div>\n\n&lt;div id=\"variable-numero-ejemplo\" data-variable-numero-ejemplo={{ $variable_numero_ejemplo }}>&lt;\/div>\n\n&lt;div id=\"vector-ejemplo\" data-vector-ejemplo={!! json_encode($vector_ejemplo) !!}>&lt;\/div>\n\n&lt;div id=\"objeto-ejemplo\" data-objeto-ejemplo={!! json_encode($objeto_ejemplo) !!}>&lt;\/div><\/code><\/pre>\n\n\n\n<p>En el Javascript:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>var variable_texto_ejemplo = $('#variable-texto-ejemplo').data('variable-texto-ejemplo');\nconsole.log(variable_texto_ejemplo);\n\nvar variable_numero_ejemplo = $('#variable-numero-ejemplo').data('variable-numero-ejemplo');\nconsole.log(variable_numero_ejemplo);\n\nvar vector_ejemplo = $('#vector-ejemplo').data('vector-ejemplo');\nconsole.log('vector_ejemplo', vector_ejemplo);\n\nvar objeto_ejemplo = $('#objeto-ejemplo').data('objeto-ejemplo');\nconsole.log('objeto_ejemplo', objeto_ejemplo);\n\nvar url_base = $('#url-base').data('url-base');\nconsole.log(url_base);<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-large is-style-default\"><img decoding=\"async\" src=\"https:\/\/dapliw.org\/wp-content\/uploads\/2022\/02\/Captura-de-pantalla-de-2022-02-19-15-06-30.png\" alt=\"Salida\" class=\"wp-image-1651\"\/><figcaption>Salida<\/figcaption><\/figure>\n","protected":false},"excerpt":{"rendered":"<p>En la vista: En el Javascript:<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"material-hide-sections":[],"footnotes":""},"categories":[3],"tags":[2],"class_list":["post-1648","post","type-post","status-publish","format-standard","hentry","category-javascript","tag-javascript"],"_links":{"self":[{"href":"https:\/\/saemas.com\/sitio_web\/wp-json\/wp\/v2\/posts\/1648","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/saemas.com\/sitio_web\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/saemas.com\/sitio_web\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/saemas.com\/sitio_web\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/saemas.com\/sitio_web\/wp-json\/wp\/v2\/comments?post=1648"}],"version-history":[{"count":0,"href":"https:\/\/saemas.com\/sitio_web\/wp-json\/wp\/v2\/posts\/1648\/revisions"}],"wp:attachment":[{"href":"https:\/\/saemas.com\/sitio_web\/wp-json\/wp\/v2\/media?parent=1648"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/saemas.com\/sitio_web\/wp-json\/wp\/v2\/categories?post=1648"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/saemas.com\/sitio_web\/wp-json\/wp\/v2\/tags?post=1648"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}