无法验证Shopware后端表单中的字段

问题描述 投票:0回答:1

我试图通过向我的控制器发送命中来验证我的ExtJs文件中的字段..一切正常,我得到了结果...但问题是我无法在代码中获得me.article,因为它显示未定义所以我在控制器中的逻辑不会按预期返回结果。

任何帮助将受到高度赞赏。

注意:这仅适用于Shopware v.5.4.6。它适用于Shopware 5.2。

Shopware.apps.Article.view.detail.Base.prototype.createLeftElements = function() {

    var me =this, articleId = null, additionalText = null;

    console.log('article', me.article);
    if (me.article instanceof Ext.data.Model && me.article.getMainDetail().first() instanceof Ext.data.Model) {
        articleId = me.article.getMainDetail().first().get('id');
        additionalText = me.article.getMainDetail().first().get('additionalText');
    }

    me.nameField = Ext.create('Ext.form.field.Text', {
        name: 'name',
        dataIndex: 'name',
        fieldLabel: me.snippets.name,
        allowBlank: false,
        enableKeyEvents:true,
        checkChangeBuffer:700,
        labelWidth: 155,
        anchor: '100%',
        vtype:'remote',
        validationUrl: '{url controller="MyController" action="check"}',
        validationRequestParam: articleId,
        validationErrorMsg: '{s name=detail/base/number_validation}Validation Message.{/s}'
    });
    // .. some code here which is irrelevant

    return [
        me.supplierCombo,
        me.nameField,
        me.mainDetailAdditionalText,
        me.numberField,
        {
            xtype: 'checkbox',
            name: 'active',
            fieldLabel: me.snippets.active,
            inputValue: true,
            uncheckedValue:false
        },
        {
            xtype: 'checkbox',
            name: 'isConfigurator',
            fieldLabel: me.snippets.configurator.fieldLabel,
            inputValue: true,
            uncheckedValue:false
        }
    ];
};
plugins backend shopware
1个回答
0
投票

我不是那么深入ExtJS,但CSRF保护可能导致这个问题吗?也许您需要将控制器列入白名单。

https://developers.shopware.com/developers-guide/csrf-protection/#addition-to-backend-token-validation

© www.soinside.com 2019 - 2024. All rights reserved.