0

Smarty でいくつかの実験を行っていますが、foreach ループに問題があり、機能せず、理由がわかりません。これが私のコードです:

デフォルト.tpl

    <select name="user">
    {html_options values=$id output=$names selected="5"}
</select>

<table>
{foreach $names as $name}
{strip}
   <tr bgcolor="{cycle values='#eeeeee,#dddddd'}">
      <td>{$name}</td>
   </tr>
{/strip}
{/foreach}
</table>

<table>
{foreach $users as $user}
{strip}
   <tr bgcolor="{cycle values='#aaaaaa,#bbbbbb'}">
      <td>{$user.name}</td>
      <td>{$user.phone}</td>
   </tr>
{/strip}
{/foreach}
</table>

および default.php

<?php

include('Smarty.class.php');

//create object
$smarty = new Smarty;

$smarty->template_dir = 'C:\xampp\htdocs\smarty\templates';
$smarty->config_dir = 'C:\xampp\htdocs\smarty\config';
$smarty->cache_dir = 'C:\xampp\php\smarty\cache';
$smarty->compile_dir = 'C:\xampp\php\smarty\templates_c';

$smarty->assign('names', array('Bob', 'Jimmy', 'Freddy', 'Walter', 'Jerry'));

$smarty->assign('users', array(
                        array('name' => 'bob', 'phone' => '555-3425'),
                        array('name' => 'jim', 'phone' => '555-4364'),
                        array('name' => 'joe', 'phone' => '555-3422'),
                        array('name' => 'jerry', 'phone' => '555-4973'),
                        array('name' => 'fred', 'phone' => '555-3235')
));

//display information
$smarty->display('default.tpl');
?>

テストすると、次のエラーが表示されます。

Fatal error: Smarty error: [in default.tpl line 16]: syntax error: invalid attribute name: '$names' (Smarty_Compiler.class.php, line 1550) in C:\xampp\php\Smarty\libs\Smarty. class.php の 1094 行目。

同じことが $users にも起こります。が機能しているため、値が渡されていることがわかっているので、何が起こっているのか理解できません。

事前にt​​hnx。

編集: この例は、smarty Web サイトから取得しました。

4

2 に答える 2

1

smarty Web サイトの例が機能していないようです。これを機能させるために私がしなければならなかったことは次のとおりです。

    <table>
    {foreach from=$names item=name}
    {strip}
       <tr bgcolor="{cycle values='#eeeeee,#dddddd'}">
          <td>{$name}</td>
       </tr>
    {/strip}
    {/foreach}
</table>

<table>
    {foreach from=$users item=user}
    {strip}
       <tr bgcolor="{cycle values='#aaaaaa,#bbbbbb'}">
          <td>{$user.name}</td>
          <td>{$user.phone}</td>
       </tr>
    {/strip}
    {/foreach}
</table>
于 2012-09-27T14:46:35.107 に答える
1
{foreach name=$names}
.
.
.
.
<td> {$name} </td>

これが仕組みです。smarty で foreach を使用した方法を試したことはありません。

于 2012-09-27T14:38:01.177 に答える