MAO-EYE 2016-05-24 12:33 采纳率: 100%
浏览 18

获取信息Ajax [关闭]

Closed. This question needs to be more focused. It is not currently accepting answers.
                </div>
            </div>
        </div>
                <hr class="my12 outline-none baw0 bb bc-powder-2">
            <div class="grid fw-nowrap fc-black-600">
                    <div class="grid--cell mr8">
                        <svg aria-hidden="true" class="svg-icon iconLightbulb" width="18" height="18" viewbox="0 0 18 18"><path d="M9.5.5a.5.5 0 0 0-1 0v.25a.5.5 0 0 0 1 0V.5zm5.6 2.1a.5.5 0 0 0-.7-.7l-.25.25a.5.5 0 0 0 .7.7l.25-.25zM1 7.5c0-.28.22-.5.5-.5H2a.5.5 0 0 1 0 1h-.5a.5.5 0 0 1-.5-.5zm14.5 0c0-.28.22-.5.5-.5h.5a.5.5 0 0 1 0 1H16a.5.5 0 0 1-.5-.5zM2.9 1.9c.2-.2.5-.2.7 0l.25.25a.5.5 0 1 1-.7.7L2.9 2.6a.5.5 0 0 1 0-.7z" fill-opacity=".4"></path><path opacity=".4" d="M7 16h4v1a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1v-1z" fill="#3F3F3F"></path><path d="M15 8a6 6 0 0 1-3.5 5.46V14a1 1 0 0 1-1 1h-3a1 1 0 0 1-1-1v-.54A6 6 0 1 1 15 8zm-4.15-3.85a.5.5 0 0 0-.7.7l2 2a.5.5 0 0 0 .7-.7l-2-2z" fill="#FFC166"></path></svg>
                    </div>
                <div class="grid--cell lh-md">
                    <p class="mb0">
                        <b>Want to improve this question?</b> Update the question so it focuses on one problem only by <a href="/posts/37413699/edit">editing this post</a>.
                    </p>
                    <p class="mb0 mt6">Closed <span title="2016-05-24 23:25:05Z" class="relativetime">3 years ago</span>.</p>
                </div>
            </div>
    </aside>

HTML Code

<div class="ui grid">
    <div class="eight wide column">
        <form method="POST" class="ui form">
          <input type="hidden" name="act"  value="{% if act == 'edit' %}edit{% else %}add{% endif %}">
          <input type="hidden" name="id">
          <div class="field">
            <label>First Name</label>
            <input name="firstName" type="text" id="firstName" placeholder="First Name" value="{% if act == 'edit' %}{% endif %}">
          </div>
          <div class="field">
            <label>Last Name</label>
            <input name="lastName" type="text" id="lastName" value="{% if act == 'edit' %}{% endif %}" placeholder="Last Name">
          </div>
          <button class="ui button" type="submit">
                {% if act == "edit" %}
                   <i class="save icon"></i>
                   Edit
                {% else %}
                    <i class="save icon"></i>
                    Add
                {% endif %}
          </button>
        </form>
    </div>

    <div class="eight wide column">
        <table class="ui celled table">
          <thead>
            <tr>
              <th>First Name</th>
              <th>Last Name</th>
              <th>Notes</th>
            </tr>
          </thead>
          <tbody>
              {% for user in users %} 
                <tr id="user-{{ user.test_id }}">
                  <td>{{ user.test_first }}</td>
                  <td>{{ user.test_last }}</td>
                  <td>
                        <div href="#" class="ui compact icon button update user" data-user-id="{{ user.test_id }}">
                            <i class="edit icon"></i>
                        </div>
                        <div href="#" class="ui red compact icon button delete user" data-user-id="{{ user.test_id }}">
                            <i class="remove user icon"></i>
                        </div>
                   </td>
                </tr>
             {% endfor %}
          </tbody>
        </table>
    </div>

Ajax

$('.button.update.user').click(function(){
var userID = $(this).data('user-id');

$.get(
    site_url + userID,
    function (users) {
        $('#firstName').text(user.test_first);
        $('#lastName').text(user.last_name);
    }
    ),
$.ajax({
    dataType: "json",
    data:
        'act=edit' + 
        '&userID=' + userID,
    type: 'post',

});
})

PHP

class Application_Controllers_Test_Module extends Application_Controllers_ModelResource {
public function indexAction() {
    // $data['test'] = $this->getConfig()->read($this->getDispatcher()->getServiceKey());
    $testModel = Application_App::getModel("test");
    $act = $this->getRequest()->getParam("act");
    $userFirst = $this->getRequest()->getParam("firstName");
    $userLast = $this->getRequest()->getParam("lastName");
    $userID = $this->getRequest()->getParam("userID");
    if($act == 'add') {
        $result = $testModel->AddingTestUsers($userFirst, $userLast);
        Application_App::redirect('test');
    }
    if($act == 'getUser') {
        $data["users"] = $testModel->selectUserByID($userID);
        echo json_encode($teacher);
    }
    if($act == 'edit') {
        $result = $testModel->UpdateTestUsers($userFirst, $userLast, $userID);
    }
    if($act == 'delete') {
        $result = $testModel->DeleteTestUsers($userID);
        die(json_encode($result));
    }
    $data["users"] = $testModel->selectTestUsers();

    return $data;
}
}

## MySQL ##
public function selectUserByID($userID) {
    return $this->getAdapter()->fetch("SELECT * FROM test WHERE 'test_id'=?", array($userID));
}

Problem is

I am Junior in Ajax. My company uses their own php framework that is look like somhow to laravel and they used twig template. Problem I should did update form through ajax. I have a table with button edit. After clicking button information should appear in a form input. Just one small problem is I dont know how to connect Ajax to my php script

</div>
  • 写回答

1条回答 默认 最新

  • weixin_33686714 2016-05-24 12:41
    关注

    To connect AJAX to a PHP script you have to specify the URL in your AJAX call along with a method:

    $.ajax({
        method: 'post',
        url: 'foo.php',
        dataType: "json",
        data:
            'act=edit' + 
            '&userID=' + userID,
    });
    
    评论

报告相同问题?

悬赏问题

  • ¥15 livecharts wpf piechart 属性
  • ¥20 数学建模,尽量用matlab回答,论文格式
  • ¥15 昨天挂载了一下u盘,然后拔了
  • ¥30 win from 窗口最大最小化,控件放大缩小,闪烁问题
  • ¥20 易康econgnition精度验证
  • ¥15 msix packaging tool打包问题
  • ¥28 微信小程序开发页面布局没问题,真机调试的时候页面布局就乱了
  • ¥15 python的qt5界面
  • ¥15 无线电能传输系统MATLAB仿真问题
  • ¥50 如何用脚本实现输入法的热键设置