第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

從模型代碼點(diǎn)火器中獲取不同的結(jié)果數(shù)組

從模型代碼點(diǎn)火器中獲取不同的結(jié)果數(shù)組

PHP
神不在的星期二 2022-12-23 15:12:55
    我是使用 Codeigniter 作為 web api 的新手,我想得到這個(gè)結(jié)果{"result":[{"id":"1","nama":"Orion","nomor":"08576666762"},{"id":"2","nama":"Mars","nomor":"08576666770"},{"id":"7","nama":"Alpha","nomor":"08576666765"}],"success":"1","message":"success"} 但我得到了這種結(jié)果:{"result":[[{"id":"1","nama":"Orion","nomor":"08576666762"},{"id":"2","nama":"Mars","nomor":"08576666770"},{"id":"7","nama":"Alpha","nomor":"08576666765"}]],"success":"1","message":"success"}我想知道我哪里弄錯(cuò)了?我正在使用 codeigniter,下面的代碼來自控制器和模型m_server.php(模式)<?php     Class M_server extends CI_Model {        function __construct(){            parent::__construct();            $this->load->database();        }        // buat view dashboard main        function dash_main1(){            $data = $this->db->query("            select *            from telepon            ");            $result = array();            $result['result'] = array();            $result['success'] = "1";            $result['message'] = "success";            array_push($result['result'], $data->result());            return $result;        }    }Rest_server.php(控制器)<?phpdefined('BASEPATH') OR exit('No direct script access allowed');class Rest_server extends CI_Controller {    function __construct(){        parent::__construct();        $this->load->model('m_server');    }    public function index()    {        $this->load->helper('url');        $this->load->view('rest_server');    }    function dash_main1(){        $data=$this->m_server->dash_main1();        echo json_encode($data);    }}
查看完整描述

1 回答

?
飲歌長(zhǎng)嘯

TA貢獻(xiàn)1951條經(jīng)驗(yàn) 獲得超3個(gè)贊

刪除此行(可選)

$result['result'] = array();

并改變這一行

$result['result'] = $data->result(); //result become the array

array_push向現(xiàn)有數(shù)組添加元素


查看完整回答
反對(duì) 回復(fù) 2022-12-23
  • 1 回答
  • 0 關(guān)注
  • 99 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)