ホームページ >バックエンド開発 >PHPチュートリアル >thinkphp での ajax の使用に関する問題 セカンダリ リンケージを作成したい。
public function Billing()
{
//バックエンド Ajax 検証
$result = array();
$cate['S_Customer'] =$_POST['S_Customer']; 🎜> $result = M('Customer')->where( $cate)->field('phone,c_name')->select();
$this->ajaxReturn($result, "json");
$this->display();
}
出力に問題があるのではなく、配列だけが表示されるのはなぜですか?
[{"phone":"13802149988","c_name":"u5f20u4e09"},{"phone":"13802144455","c_name":"u674eu56db"}] のみが表示されます、F12確認したところ、ページにはこの配列のみが存在し、他には何も存在しませんでした。 。