gpt4 book ai didi

php - 代码点火器选择不工作

转载 作者:行者123 更新时间:2023-11-29 01:55:26 26 4
gpt4 key购买 nike

所以我遇到了无法从表中获取字符串的问题。这是我在 Controller 中的方法:

    public function get_tree($id){
$data['tree'] = $this->Product_model->get_tree($id);
return $data;
}

这是模型中的函数:

function get_tree($id){
$this->db->select('ascending_path');
$this->db->from('category');
$this->db->where('id', $id);
$result = $this->db->get();
return $result;
}

我正在使用 Ajax 将其显示到 View 中,但似乎没有显示任何内容。甚至没有错误,200 状态代码,请求显示在访问日志中。有什么提示吗?

PS:如果我尝试对它进行 json_encode,然后在 ajax 调用中传递 dataType:json,它返回的结果是:

{"tree":{"conn_id":{"affected_rows":null,"client_info":null,"client_version":null,"connect_errno":null,"connect_error":null,"errno":null,"error":null,"error_list":null,"field_count":null,"host_info":null,"info":null,"insert_id":null,"server_info":null,"server_version":null,"stat":null,"sqlstate":null,"protocol_version":null,"thread_id":null,"warning_count":null},"result_id":{"current_field":null,"field_count":null,"lengths":null,"num_rows":null,"type":null},"result_array":[],"result_object":[],"custom_result_object":[],"current_row":0,"num_rows":null,"row_data":null}}

一切似乎都是空的。我什至不知道那个对象是什么,我的意思是,查询应该只带一个字符串。

最佳答案

更改return $result;返回 $result->result();

阅读有关生成查询结果的更多信息 here

关于php - 代码点火器选择不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30406990/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com