smarty中数组的传递

WBOY
Release: 2016-06-23 14:10:15
Original
1115 people have browsed it

我想实现把php的数组$questions传到前端模板js中的$question数组中(我的js是用{literal}...{/literal}嵌到模板中的),在具体叙述,就是我想用js来控制输出从数据库里提出来的N条记录,,,请大神帮忙


回复讨论(解决方案)

{literal}...{/literal} 是不处理其中的模板变量的吧?
你可以单独弄个 js 数据块

在{literal}...{/literal}外再写一个<script></script>,在这里给你这个数组赋值。

回复2楼:我现在是在模板里用
{foreach from=$questions item=temp key=k}
{$k}=>{$temp}
{/foreach}得到了这个数组,但是我想的是把这个数组赋值给js中的questions数组,该怎么做?你说的单独弄个js数据块是什么意思?能再给我解析下吗?

回复3楼:我在{literal}...{/literal}外边加了<script></script>了已经

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template