Prestashop从数据库返回内爆数组的最后一个值

问题描述

我开始摆弄Prestashop 1.7模块,然后遇到了这种奇怪的行为。

我有这段代码可以将表单中的值保存到数据库中(工作正常)

const spawn = require('child_process').spawn
const ProgressBar = require('progress')
const http = require('http')
const fs = require('fs')

const target = fs.createWriteStream(target_file)
const req = http.request({ hostname: hostname,path: filename })

req.on('response',function(res) {
    const len = parseInt(res.headers['content-length'],10)
    
    const bar = new ProgressBar(`downloading ${hostname}/${filename} [:bar] :rate/bps :percent :etas`,{
        complete: '=',incomplete: ' ',width: 20,total: len
    })

    res.on('data',function (chunk) {
        bar.tick(chunk.length);
        target.write(chunk);
    })

    res.on('end',function () {
        target.end(function () {
            console.log(`downloaded ${len} bytes to data/${filename}`)
            
            const unzip = spawn('unzip',['-q',filename,'-d',target_dir])
            
            unzip.on('close',(code) => {
                console.log(`unzip exited with code ${code}`)

                const rm = spawn('rm',[new_filename])
                rm.on('close',(code) => {
                    console.log(`rm exited with code ${code}`)
                })
            })
        })
        
    })
}).on('error',(err) => {
    console.log('Error: ',err.message)
})

req.end()

我使用这段代码数据库获取这些值(可以正常运行)

protected function postProcess()
{
    $form_values = $this->getConfigFormValues();

    foreach (array_keys($form_values) as $key) {
        Configuration::updateValue($key,Tools::getValue($key));
        if($key == 'MSLT_MEGAMENU_CATEGORIES'){
            $categories = implode(",",Tools::getValue($key));
            Configuration::updateValue('MSLT_MEGAMENU_CATEGORIES',$categories);
        }else{
            $this->errors[]=$this->l('Please select categories to display');
        }
    }
}

和帮助者用值填充表单

protected function getConfigFormValues()
{
    $categories = explode(',',Configuration::get('MSLT_MEGAMENU_CATEGORIES',true));
    return array(
        'MSLT_MEGAMENU_LIVE_MODE' => Configuration::get('MSLT_MEGAMENU_LIVE_MODE',true),'MSLT_MEGAMENU_CATEGORIES' => $categories,'MSLT_MEGAMENU_ACCOUNT_EMAIL' => Configuration::get('MSLT_MEGAMENU_ACCOUNT_EMAIL','[email protected]'),'MSLT_MEGAMENU_ACCOUNT_PASSWORD' => Configuration::get('MSLT_MEGAMENU_ACCOUNT_PASSWORD',null),);
}

这是尝试从数据库中加载值时的var_dump(),在这种情况下,我的DB值为(1、3、9)

    $helper->tpl_vars = array(
        'fields_value' => $this->getConfigFormValues(),/* Add values for your inputs */
        'languages' => $this->context->controller->getLanguages(),'id_language' => $this->context->language->id,);

    return $helper->generateForm(array($this->getConfigForm()));

如您所见,Configuration :: get()仅获取最后一个字符串值。 有趣的行为是,当我更新数据并保留在同一页面中时,一切正常,并且可以正确提取数据,但是当我离开模块配置页面并重新出现时,就会发生此问题。也许我缺少一些代码片段?我还是新手。如果需要,我可以提供更多代码

解决方法

肮脏的解决方法我发现可以从DB正确获取内爆值。也许有人会使用它。

    $sql = 'SELECT * FROM '._DB_PREFIX_.'configuration WHERE name = "MSLT_MEGAMENU_SELECTED_CAT"';
    $value = Db::getInstance(_PS_USE_SQL_SLAVE_)->getRow($sql);
    $selected = explode(',',$value['value']);
,

我不知道您的特定目标是什么,但是无论如何,使用Prestashop自己的功能总是很方便的。 保存并选择配置变量 例如,以json格式保存值

 Configuration::updateValue('MYVALUES',Tools::jsonEncode(Tools::getValue('MYVALUES')),true );

例如,获取值

Tools::jsonDecode( Configuration::get( 'MYVALUES' );