CakePHP 关于同时使用 set() 和 Compact() 的说明。只能与compact()一起使用
我知道compact()是一个标准的php函数。而 set() 是蛋糕专用的方法。
我正在运行一个简单的测试,将值传递到使用 ajax 生成的视图(控制器中的用户 render()),并且如果我的设置如下,它只会将值从控制器传递到视图:
$variable_name_to_pass = "Passing to the view using set() can compact()";
$this->set(compact('variable_name_to_pass'));
通过阅读手册,看来 set() 应该在不紧凑的情况下工作。
谁能解释为什么 set() 不能单独工作?喜欢
$this->set('variable_name_to_pass');
I know compact() is a standard php function. And set() is a cake-specific method.
I am running a simple test of passing a value to a view generated with ajax (user render() in my controller), and it only passes the value from the controller to the view if my setup is like so:
$variable_name_to_pass = "Passing to the view using set() can compact()";
$this->set(compact('variable_name_to_pass'));
From reading the manual, it appears set() should work along w/out compact.
Can anyone explain why set() will not work alone? Like
$this->set('variable_name_to_pass');
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据 CakePHP API:
compact 函数返回一个关联数组,该数组通过获取输入数组中指定的名称、将它们用作键、获取这些名称引用的变量的值并将其作为值来构建。例如:
因此,当您将
compact
与set
结合使用时,您正在使用set
函数的单参数形式,通过传递它键值对的关联数组。如果您只想在视图上设置一个变量,并且想要使用单参数形式,则必须以相同的方式调用
set
:否则,将使用
的两个参数形式可以使用 set
:两者实现相同的目的。
According to the CakePHP API:
The
compact
function returns an associative array, built by taking the names specified in the input array, using them as keys, and taking the values of the variables referenced by those names and making those the values. For example:So when you use
compact
in conjunction withset
, you're using the single parameter form of theset
function, by passing it an associative array of key-value pairs.If you just have one variable you want to set on the view, and you want to use the single parameter form, you must invoke
set
in the same way:Otherwise, the two parameter form of
set
can be used:Both achieve the same thing.
紧凑返回一个数组。所以,显然 set 正在检查它的参数以及它是否是一个数组。它知道它来自compact。如果不是,它需要另一个参数,即变量的值。
Compact returns an array. So, apparently set is checking it's parameters and if it's an array. It knows that it's from compact. If not it expects another parameter, the value of variable.