将会话变量从PHP传递到JS

时间:2013-08-19 16:37:21

标签: javascript php jquery

我目前正在使用一些获取td单元格内容的jQuery。然后我通过变量将该内容传递给另一个文件。我正在试图找出获取会话变量的最佳方法,并且似乎已经遇到了麻烦。下面是一些简短的伪代码以及我的JS / jQuery。

EDIT / UPDATE

更正也发布在下面。这是我的ManageUsers.inc.php

<?php
// Load 404 page if file is accessed directly
if(!defined('INCLUDE_CHECK')) die(header("HTTP/1.0 404 Not Found"));

// Load 404 page if the page is accessed by Users or QA Agents
if($_SESSION['role_id']<2 or $_SESSION['role_id']==5) die(header("HTTP/1.0 404 Not Found"));

?>
<script src="/resources/js/getBusinessUnit.js"></script>
<script type="text/javascript" src="../../resources/js/User.js"></script>

<div id="main">
  <div class="container">
    <h1>Manage Users</h1>
    <h2>This page allows you to add and update the authorized Users</h2>
  </div>

  <div class="container">
    <div style="margin-left:auto; margin-right:auto; text-align:center;">
    <span id="user">
    <form name="insertUser" action="<?php echo htmlspecialchars($_SERVER['PHP']);?>" method="post">
      <div style="margin-top:0px; margin-left:auto; margin-right:auto; text-align:center;">
        <fieldset>
          <legend class="legend1"><h2>&nbsp User Info &nbsp</h2></legend>
          <div style="padding-top: 5px;">
            <input type="text" name="uname" class="textinput1" id="uname" value="" style="width:200px;" maxlength="200" tabindex="2" placeholder="User Name" /><br />
            <input type="text" name="fname" class="textinput1" id="fname" value="" style="width:200px;" maxlength="100" tabindex="3" placeholder="First Name" /><br />
            <input type="text" name="lname" class="textinput1" id="lname" value="" style="width:200px;" maxlength="100" tabindex="4" placeholder="Last Name" /><br />
            <div style="float:left"><input type="checkbox" name="status" id="status" value="YES"/>Enabled </div>
          </div>
        </fieldset>
        <fieldset>
          <legend class="legend1"><h2>&nbsp Company Info &nbsp</h2></legend>
          <div style="padding-top: 5px;">
            <div class="input-field">
              <?php require $adm_pg.'selectRole'.$ext; ?>
              </select>
            </div>
            <div class="input-field">
              <?php require $adm_pg.'selectBusinessUnit'.$ext; ?>
            </div>
              <span id="DeptContainer"></span>
          </div>
        </fieldset>
      </div>

      <?php require $adm_pg.'adminButtons'.$ext; ?>
    </form>
    </span>
    </div>
  </div>
  <div class="container">
    <?php require $adm_pg.'displayUsers.inc.php'; ?>
  </div>

</div>
<?php
require 'db/ManageUsers.db.php';
require 'db/logAction.db.php';
?>

这是我的User.js文件

$(window).on('load', function() {
    $('.user').on('click', function() {
        var id = $(this).html();
    $.get("/includes/adminPages/Update_User.inc.php?selection_id=" + id, function(data) {
        $('#user').html(data);
        });
    });
});

4 个答案:

答案 0 :(得分:2)

这里有两种选择。

  1. PHP文件可以将会话变量作为data调用中返回的$.get的一部分发回。

  2. 如果会话值在页面执行期间没有改变,那么你可以像其他人所建议的那样,通过echo $_SESSION['bus_id'];

  3. 如果你无法让#2工作,那么你就是这样做的。将HTML文件减少到此(我将省略标题内容,我认为在您的文件中是正确的):

    <div>
    <?php
        print_r($_SESSION);
    ?>
    </div>
    

    这将为您提供所有会话值。通过这种方式,您可以查看所需的值是否存在。如果是,那么这将正常工作:

    <script>
    var myvar = "<?php echo $_SESSION['bus_id']; ?>";
    </script>
    

    对于这样的问题,最重要的是简化它们。从页面中删除不需要的所有内容,并以小步骤添加到代码中,以便您可以确定问题发生的位置。 您遇到的问题似乎并不是您认为自己遇到的问题:)

    修改

    根据更新的信息,问题是您希望在一个永远不会被PHP解析的文件中运行PHP代码(User.js)。如果您需要在外部.js文件中定义的javascript函数中访问PHP变量,那么您必须将变量拉入主PHP文件中的javascript,然后将其作为参数发送到您正在执行的任何代码中在外部.js文件中,或全局声明它并确保它对外部代码可见。例如,使用参数解决方案:

    <强>的index.php

    <script src="http://code.jquery.com/jquery-1.9.1.js"></script>
    <script src="myfunctions.js"></script>
    <script>
        $(document).ready(function(){
            var bus_id = "<?php echo $_SESSION['bus_id']; ?>";
            setup_binds(bus_id);
        });
    </script>
    

    <强> myfunctions.js

    function setup_binds(bus_id) {
        $(".user").on("click",function(){
            alert("bus_id is: " + bus_id);
        });
    }
    

    换句话说,您需要仔细考虑如何设计包含多个文件的网页。

答案 1 :(得分:0)

<script type="text/javascript">
    var id = '<?php echo $_SESSION['bus_id'] ; ?>';
</script>

答案 2 :(得分:0)

我喜欢从PHP到JS做的是使用JSON几乎所有内容,然后在控制台中查看响应。

这显然不安全,我没有测试过这段代码,但这个想法是这样的:

PHP

<?php
   $id = $_REQUEST['id'];  // the id sent
   ...
   echo json_encode($_SESSION);
?>

AJAX

... on('click','delegate', function() { ...

$.ajax(url, {  // $.getJSON works well too
   dataType:'json', 
   data:{id:someid}, 
   success:function(ses){
       // you should see the whole session as a tree 
       console.debug(ses);  
       // I also like to see big trees in the "DOM" in firebug
       window.SESSION = ses;
   }});
})

我觉得这只是打开了数据的整体情况,并且您最终会减少回调次数,因为您可以通过传递对象来进行更多的沟通。您还可以处理消息而不仅仅是错误。

答案 3 :(得分:0)

我很容易就这么做了。为了简化我的问题,我只使用会话变量创建了一个隐藏的div。然后我设置bus_id =(element.value),其中element是隐藏div id的名称。

...解

<input type = "hidden" id="bus" name="bus" value="<?php echo $_SESSION['bus_id']; ?>">

然后在我的JS中

bus_id = (bus.value);