当前位置: 首页>>代码示例>>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;未经允许,请勿转载。