duanchi0883649 2017-09-08 20:58
浏览 765
已采纳

如何将PHP变量传递给Vue指令

Looking for some help with Vue and WordPress:

I’m trying to get Vue and PHP to talk with each other and having some trouble. Currently, in the project, we’re creating an anchor for each “resource”

<a v-if="resource.pdf_color"
                     :href="resource.pdf_color.url"
                     download
                     class="btn btn-with-icon icon-file-check"
                     data-toggle="tooltip"
                     data-placement="top"
                     title="Color Download">
                          <label>Color Download</label>
</a>

However, we would like to use a WP plugin called “Easy Media Download” to limit number of resources downloaded (we’re trying to minimize members signing for one month to download all materials then canceling service).

I’m trying to figure it out how to be able to call the $url resource.pdf_color.url inside the shortcode do_shortcode( '[easy_media_download url=" $url "]' ) and then bind it to the anchor element inside the href argument. I’ve tried a few things but haven’t had much luck.

Any suggestions or ideas on how to solve this?

  • 写回答

1条回答 默认 最新

  • douwen9540 2017-09-28 02:32
    关注

    There are several options to pass variables from a server-side (e.g php, flask etc) to Vue and I'll show you 4 that will work for simple data types (int, strings etc) and with a little more effort, you can also make them work for more complex data types (arrays, objects etc). This example uses python (Flask) but you should be able to easily adapt it to fit PHP. I hope it helps because frankly, you question isn't too clear

    1. Use inline JavaScript

    Just assign the variable in a script tag

    <script type="text/JavaScript"> 
     #some var from flask
      var d_var = "{{somevalue}}" 
     </script>
    

    Then in you vue script, you can do

    var vm = new Vue({
      el: '#demo',
      data: {
      d: d_var
      ...
    

    The remaining step involve assigning the variable to the attribute of a DOM element (e.g a hidden input)

    1. Use jQuery

    Create a hidden input inside the main vue dom element with its value set to your flask variable

    <input name="d_elem" type="hidden" value="{{somevalue}}" id="d_elem" />
    

    Then in your vue script you can now do

    var d_var = $("#d_elem").val(); 
    var vm = new Vue({
      el: '#demo',
      data: {
      d: d_var
      ...
    
    1. Use plain old getElementById

    In case you suffer JS library fatigue, just create the hidden input like before but this time you do

     var userid3 =  document.getElementById("userid2").value;
     var vm = new Vue({
      el: '#demo',
      data: {
      d: d_var
      ...
    
    1. Use vm.$refs

    Create the hidden input with ref attribute

    <input name="d_elem" type="hidden" value="{{somevalue}}" ref="d_elem" />
    

    Access it inside vue instance like

    var d_var = this.$refs.d_elem.value ;
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵