1
我已經在我的課兩種方法:會議是失去了對JavaScript重定向
class Foo {
public first() {
session_start();
$_SESSION['a'] = 'a';
$this->renderView('index.html');
}
public second() {
var_dump($_SESSION); die();
}
}
的index.html:
<script type="text/javascript">
window.location = "/foo/second";
</script>
的問題是,在second()
方法會話變量是空的。爲什麼?
如果您認爲答案幫助您找到了解決方案,請將其標記爲您的問題的答案。如果沒有,請回復該答案。 – vonUbisch