Questions tagged «datetime»

2
Magento 2-如何添加DateTime UI组件
我想在添加新页面时在CMS页面部分中添加新字段作为日期时间,我发现magento使用UI组件,因此在挖掘之后,我可以通过使用以下代码来添加日期字段,但无法添加日期时间字段。有人可以帮忙吗? 添加日期字段的代码: <field name="start_date"> <argument name="data" xsi:type="array"> <item name="config" xsi:type="array"> <item name="dataType" xsi:type="string">string</item> <item name="label" xsi:type="string" translate="true">Go Live Start Date</item> <item name="formElement" xsi:type="string">date</item> <item name="source" xsi:type="string">page</item> <item name="sortOrder" xsi:type="number">21</item> <item name="dataScope" xsi:type="string">start_date</item> <item name="validation" xsi:type="array"> <item name="required-entry" xsi:type="boolean">true</item> </item> </item> </argument> </field> 我们需要重写的文件才能实现: vendor/magento/module-cms/view/adminhtml/ui_component/cms_block_form.xml

2
在magento 2中为产品创建日期和时间属性
我试图为产品创建一个属性,该属性必须显示日期和时间日历,并且应该仅作为日期和时间格式存储在数据库中。这是我的剧本 $ eavSetup- > addAttribute ( \ Magento \ Catalog \ Model \ Product :: ENTITY ,'xyz_start_time' ,[ 'group' => 'xyz' ,'type' => 'datetime' ,'backend' => '' ,' frontend' => '' ,'label' => '开始时间' ,'input' => '日期' ,'class' => '' ,'source' =>'' ,'全局' => \ Magento \ Catalog \ Model …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.