我是OctoberCMS的新手,所以我不知道很多事情。 我阅读了10月份的文档,我知道在以静态方式使用partials时如何传递变量:
{% partial "location" city="Vancouver" country="Canada" %}
我的问题是我需要使用php或js变量。假设我有一个输入字段,用户在其中写入ID,然后在按下按钮后我想将ID传递给部分ID。我想做这样的事情:
{% partial "location" city=$city country=$country %}
有人能帮助我吗?谢谢。
答案 0 :(得分:0)
您是否尝试过此处记录的此方法? https://octobercms.com/docs/cms/partials#partial-variables
{% partial "location" city=city country=country %}
修改
另外,您需要在onStart函数中定义页面变量。
url = "/blah"
layout = "default"
==
<?
function onStart()
{
$this['country'] = ...;
$this['city'] = ...;
}
?>
==
{% partial "location" city=city country=country %}
<击>修改击>
<击>您是否阅读过有关AJAX的部分? https://octobercms.com/docs/ajax/introduction
更具体地说 - https://octobercms.com/docs/ajax/update-partials#pushing-updates和https://octobercms.com/docs/ajax/update-partials#update-definition
击>
修改
重新阅读原始问题,你要问的是绑定表单元素,而不是AJAX。
看一下JS API - https://octobercms.com/docs/ajax/javascript-api#javascript-api
我认为你可以这样做:
<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 :(得分:0)
您可以通过以下方式在partial中使用变量:
activity