js/transport.js文件里的run : function有什么功能,删掉会怎么样

2016-07-07 15:04 来源:www.chinab4c.com 作者:ecshop专家

js/transport.js文件里的run : function有什么功能,删掉会怎么样,删掉的话进入后台,处理请求的提示就没了,速度也快了很多,就不知道删掉以后有什么功能是关联的吗

回答:
调用此方法发送HTTP请求。
万不能删除。

这个请求有什么意思啊??什么作用啊!!!

function在php里面是定义函数的 index_get_invoice_query()就是一个函数例子 先定义再使用
function index_get_invoice_query()
{
$sql = 'SELECT o.order_sn, o.invoice_no, s.shipping_code FROM ' . $GLOBALS['ecs']->table('order_info') . ' AS o' .
' LEFT JOIN ' . $GLOBALS['ecs']->table('shipping') . ' AS s ON s.shipping_id = o.shipping_id' .
" WHERE invoice_no > '' AND shipping_status = " . SS_SHIPPED .
' ORDER BY shipping_time DESC LIMIT 10';
$all = $GLOBALS['db']->getAll($sql);

foreach ($all AS $key => $row)
{
$plugin = ROOT_PATH . 'includes/modules/shipping/' . $row['shipping_code'] . '.php';

if (file_exists($plugin))
{
include_once($plugin);

$shipping = new $row['shipping_code'];
$all[$key]['invoice_no'] = $shipping->query((string)$row['invoice_no']);
}
}

clearstatcache();

return $all;
}
这样就可以 在以后调用这个函数了