api.php
来自「Ext JS是一个创建丰富互联网应用程序的跨浏览器的JavaScrip库。它包含」· PHP 代码 · 共 33 行
PHP
33 行
<?php
require('config.php');
header('Content-Type: text/javascript');
// convert API config to Ext.Direct spec
$actions = array();
foreach($API as $aname=>&$a){
$methods = array();
foreach($a['methods'] as $mname=>&$m){
$md = array(
'name'=>$mname,
'len'=>$m['len']
);
if(isset($m['formHandler'])){
$md['formHandler'] = true;
}
$methods[] = $md;
}
$actions[$aname] = $methods;
}
$cfg = array(
'url'=>'php/router.php',
'type'=>'remoting',
'actions'=>$actions,
'namespace'=>'Imgorg.ss'
);
echo 'Imgorg.REMOTING_API = ';
echo json_encode($cfg);
echo ';';
?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?