Home  >  Article  >  Backend Development  >  thinkphp 面向对象

thinkphp 面向对象

WBOY
WBOYOriginal
2016-06-20 12:26:221313browse

public $allWord=array();//设置属性
$this->allWord = $logs;//在Index方法里面赋值
 dump($this->allWord);//在wordInfo方法里面打印
然后访问wordInfo方法,结果显示为null。跪求大神啊,在线等!!


回复讨论(解决方案)

你是怎么先访问 index 方法后再访问 wordInfo 方法的?

是的,在Index方法写个导出按钮,按钮跳转到wordInfo方法

好吧,回家吃饭,上传百度云,回家改。。求大神啊 啊啊啊

按钮跳转到wordInfo方法?
index 未执行,当然是空的

我是这么想的啊! 我是先执行Index方法, 在Index方法给属性赋值,然后再跳转wordInfo方法 。。这样应该得到值啊 

你是 再跳转wordInfo方法,而不是调用
因为是另一次请求,所以就不对了

那如果我把Index方法的logs数组return,然后在构造函数里 $this->allWord = $this->index();
然后在wordInfo调用属性,这样可以吗?

这样就相当于,我执行wordInfo的时候,构造方法里面执行Index方法,那Index方法里的传入的条件都是重置的吗?不会是构造方法属性得到的值,是第一次执行index    return的值。对吗

可以的

你需要记住一点:http 是无状态的,每次请求间是没有联系的

谢谢了,我只是试试种方法可不可行。。实现功能的办法的有很多种,我就是想找一条最简洁,最少代码的方法,看来是不行

Statement:
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