1

私のデータベースには、値が 0 と 1 (false と true) の列 Actif があります。

コラムを使ってみました。私のdb値0と1のブール値...しかし、うまくいきません。

{
    xtype: 'booleancolumn',
    dataIndex: 'Actif',
    text: 'MyBooleanColumn',
    falseText: 'Non',
    trueText: 'Oui'
}

お願い助けて :)

私のモデル

Ext.define('ModuleGestion.model.UtilisateursApplicatifs', {
extend: 'Ext.data.Model',

fields: [
    {
        name: 'Nom'
    },
    {
        name: 'Prenom'
    },
    {
        name: 'Identification'
    },
    {
        name: 'MotDePasse'
    },
    {
        name: 'IUtilisateurApplicatif'
    },
    {
        name: 'FonctionRepertoire'
    },
    {
        name: 'FonctionAnimation'
    },
    {
        name: 'FonctionFormation'
    },
    {
        name: 'FonctionAdministration'
    },
    {
        name: 'Actif'
    }
]});

解決策は、値の戻り値の二重引用符を削除することです:

$resultat = json_encode($resultat ); 
$resultat = str_replace('"Actif":"0"', '"Actif":0', $resultat); 
$resultat = str_replace('"Actif":"1"', '"Actif":1', $resultat);
4

1 に答える 1