當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Flight::jsonp方法代碼示例

本文整理匯總了PHP中Flight::jsonp方法的典型用法代碼示例。如果您正苦於以下問題:PHP Flight::jsonp方法的具體用法?PHP Flight::jsonp怎麽用?PHP Flight::jsonp使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Flight的用法示例。


在下文中一共展示了Flight::jsonp方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: send

 /**
  * @return bool
  */
 public function send()
 {
     $this->sendHeader();
     switch ($this->resType) {
         case 'json':
             \Flight::json($this->data, $this->resCode, true, 'utf8', $this->jsonOptions);
             return false;
         case 'jsonp':
             \Flight::jsonp($this->data, $this->jsonpCallback, $this->resCode, true, 'utf8', $this->jsonOptions);
             return false;
         case 'view':
             getView()->render($this->view, $this->data);
             return false;
         case 'filter':
             return true;
     }
     return false;
 }
開發者ID:wwtg99,項目名稱:flight2wwu,代碼行數:21,代碼來源:Response.php

示例2: function

    $templatedata['ip'] = $request->ip;
    $templatedata['geoinfo'] = Flight::get('geoinfo');
    $templatedata['meta_description'] = Flight::get('meta_description');
    // evaluate the query string (if any)
    if (isset($request->query->js)) {
        $templatedata['js'] = $request->query->js;
    } else {
        $templatedata['js'] = Flight::get('js');
    }
    if (isset($request->query->maptype)) {
        $templatedata['maptype'] = $request->query->maptype;
    } else {
        $templatedata['maptype'] = Flight::get('maptype');
    }
    Flight::render('partials/iframe_insert.php', $templatedata, 'iframe_insert');
    Flight::render('default.php', $templatedata);
});
// api to look up an ip (returns jsonp)
// http://somedomain.com/api/ip/24.105.250.46?cb=callback
Flight::route('GET /api/ip/@ip', function ($ip) {
    Flight::checkIP($ip);
    Flight::jsonp(array('ip' => Flight::get('ip'), 'city' => Flight::get('city'), 'region' => Flight::get('region'), 'areaCode' => Flight::get('areaCode'), 'dmaCode' => Flight::get('dmaCode'), 'countryCode' => Flight::get('countryCode'), 'continentCode' => Flight::get('continentCode'), 'latitude' => Flight::get('latitude'), 'longitude' => Flight::get('longitude'), 'regionCode' => Flight::get('regionCode'), 'regionName' => Flight::get('regionName')), 'cb');
});
// place any other dynamic routes here
// everything else (static folder)
Flight::route('GET /*', function () {
    $fpath = Flight::request()->url;
    Flight::getStaticFile($fpath);
});
// Now Set It Off!
Flight::start();
開發者ID:spikedviper,項目名稱:FlightGeoIP,代碼行數:31,代碼來源:index.php


注:本文中的Flight::jsonp方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。