2

我正在关注锂 facebook 连接教程 http://www.shift8creative.com/blog/facebook-connect-and-lithium

加载页面时出现以下错误

Notice: Undefined variable: html in /var/www/lithium/app/resources/tmp/cache/templates/template_views_signs_index.html_1175517_1299986110_1801.php on line 3`

Fatal error: Call to a member function script() on a non-object in /var/www/lithium/app/resources/tmp/cache/templates/template_views_signs_index.html_1175517_1299986110_1801.php on line 3

我的 Facebook.php 页面开始如下

namespace facebook;
namespace \Exception;

我的观点的第 3 行

<?php $html->script('http://connect.facebook.net/en_US/all.js', array('inline' => false)); ?>

错误可能源于什么?

4

1 回答 1

3

htmlHTML 帮助器,不再是一个神奇的变量,但可以使用它$this->html来实现。

有关更多信息,请阅读有关锂助手的文档

所以就这样做:

<?= $this->html->script('//connect.facebook.net/en_US/all.js', /* … */) ?>
于 2011-03-14T10:32:43.940 回答