doucanrui1735 2017-09-27 17:16
浏览 31
已采纳

我可以在包含部分时传递php变量吗?

I am new to OctoberCMS so I don't know a lot of things. I read the October documentation and i know how to pass variables when using partials in the static way:

{% partial "location" city="Vancouver" country="Canada" %}

My problem is that I need to use php or js variables. Let's say I have an input field where the user writes an ID, then after a button is pressed I want to pass the ID to a partial. I am trying to do something like this :

{% partial "location" city=$city country=$country %}

Can someone help me? Thank you.

  • 写回答

2条回答 默认 最新

  • dqwp81696 2017-09-27 17:25
    关注

    Have you tried this method as documented here? https://octobercms.com/docs/cms/partials#partial-variables

    {% partial "location" city=city country=country %}
    

    EDIT

    As an aside, you need to define your page variables in the onStart function.

    url = "/blah"
    layout = "default"
    ==
    <?
    function onStart()
    {
        $this['country'] = ...;
        $this['city'] = ...;
    }
    ?>
    ==
    {% partial "location" city=city country=country %}
    

    EDIT

    Have you read the section on AJAX? https://octobercms.com/docs/ajax/introduction

    More specifically - https://octobercms.com/docs/ajax/update-partials#pushing-updates AND https://octobercms.com/docs/ajax/update-partials#update-definition

    EDIT

    Just re-read your original question and you're asking about binding to form elements, not AJAX.

    Take a look at the JS API - https://octobercms.com/docs/ajax/javascript-api#javascript-api

    I think you could do something like:

    <form onsubmit="$(this).request('onMyProcessingMethod'); return false;">

    $('form').request('onMyProcessingMethod', {
        update: {myPartialName: '.whereIWantTheOutputToGo'},
        data: {country: 'Canada'} // Not 100% sure how to access form input; maybe ID selector
    })
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 一直显示正在等待HID—ISP
  • ¥15 Python turtle 画图
  • ¥15 关于大棚监测的pcb板设计
  • ¥15 stm32开发clion时遇到的编译问题
  • ¥15 lna设计 源简并电感型共源放大器
  • ¥15 如何用Labview在myRIO上做LCD显示?(语言-开发语言)
  • ¥15 Vue3地图和异步函数使用
  • ¥15 C++ yoloV5改写遇到的问题
  • ¥20 win11修改中文用户名路径
  • ¥15 win2012磁盘空间不足,c盘正常,d盘无法写入