0

我正在尝试在 phpfox 上使用 ajax 广泛浏览,但我不明白它是如何工作的,请问有什么想法吗?我在 static/jscript/main.js 中找到了这段代码:

$Core.ajax = function(sCall, $oParams)
 {
var sParams = '&' + getParam('sGlobalTokenName') + '[ajax]=true&' +             getParam('sGlobalTokenName') + '[call]=' + sCall;

if (!sParams.match(/\[security_token\]/i))
{
    sParams += '&' + getParam('sGlobalTokenName') + '[security_token]=' +    oCore['log.security_token'];
}

if (isset($oParams['params']))
{
    if (typeof($oParams['params']) == 'string')
    {
        sParams += $oParams['params'];
    }
    else        
    {
        $.each($oParams['params'], function($sKey, $sValue)
        {
            sParams += '&' + $sKey + '=' + encodeURIComponent($sValue) + '';
        });
    }       
}

$.ajax(
{
    type: (isset($oParams['type']) ? $oParams['type'] : 'GET'),
    url: getParam('sJsStatic') + "ajax.php",
    dataType: 'html',
    data: sParams,
    success: $oParams['success']
}); 
 };

我正在尝试在浏览我的网站时修复聊天模块有什么想法吗?

4

1 回答 1

1

要为站点范围的 ajax 浏览创建链接,您可以像往常一样进行操作,phpfox 会为您解决。

如果您想在 phpfox 中进行 ajax 调用,请执行以下操作:

$.ajaxCall('module.function', 'param1=value1&param2=value2');

例如:

$.ajaxCall('ad.recalculate', 'total=' + iTotal + '&location=' + sLocation + '&block_id=' + sBlockId + '&isCPM=' + $Core.Ad.isCPM);

调用文件 /module/ad/include/component/ajax/ajax.class.php 中的函数 recalculate 并传递参数:total、location、block_id 和 isCPM

于 2014-03-21T14:50:58.463 回答