Home > Backend Development > PHP Tutorial > ajax - thinkphp中的assign()跳转问题

ajax - thinkphp中的assign()跳转问题

WBOY
Release: 2016-06-06 20:22:39
Original
1382 people have browsed it

<code>$this->assign("jumpUrl",u(MODULE_NAME."/add"));</code>
Copy after login
Copy after login

这是什么意思呢?其中add为方法,module为控制器,把add方法加载过来?网上也没有这方面的说法

回复内容:

<code>$this->assign("jumpUrl",u(MODULE_NAME."/add"));</code>
Copy after login
Copy after login

这是什么意思呢?其中add为方法,module为控制器,把add方法加载过来?网上也没有这方面的说法

把 u(MODULE_NAME."/add") 赋值给jumpUrl,并把它赋值到模板(在模板中可以直接用{$jumpUrl}方式来调用的意思)

还可以简写:

<code>$this->jumpUrl = u(MODULE_NAME."/add");</code>
Copy after login

这是赋值到模板,不是跳转

文档--模板赋值

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