Questions tagged «time»

2
Magento 2使用UiComponent而不是Datepicker显示时间选择器
我想以UiComponent形式显示时间选择器 正如Magento Docs显示的变化一样,它们提供了时间选择器: 我想要在我的表单中使用UiComponent。 注意:需要显示计划时间,所以不需要日期。 已检查参考:如何在Magento 2中将时间范围选择器添加到adminhtml表单?(但是它的using块,我想使用UiComponent)

2
UI组件-以“ Ymd H:i:s”格式(ISO时间格式)显示时间
我通过UI组件创建了一些管理列表页面,其时间列中的默认时间格式如下所示 UI组件代码如下 <column name="created_at" class="Magento\Ui\Component\Listing\Columns\Date"> <argument name="data" xsi:type="array"> <item name="config" xsi:type="array"> <item name="filter" xsi:type="string">dateRange</item> <item name="component" xsi:type="string">Magento_Ui/js/grid/columns/date</item> <item name="dataType" xsi:type="string">date</item> <item name="label" xsi:type="string" translate="true">Created At</item> </item> </argument> </column> 数据库中的时间格式正确(ISO时间格式),这就是我要显示的格式。 那么,如何在UI组件中以“ Ymd H:i:s ”格式(ISO时间格式)显示时间?感谢您的任何建议:)

2
Soap API-如何基于分页限制10获取请求?
我正在使用catalogProductList获取产品列表,返回结果花费的时间太长(请参见屏幕截图),实际上我的产品数量为24K,如何使用限制10运行,如果我单击第2页然后仅加载下一个10(现在加载)然后,所有内容只会显示该值)。 现在我的设计看起来像 代码: $proxy = new SoapClient('www.abc.com/api/v2_soap/?wsdl=1'); $sessionId = $proxy->login((object)array('username' => 'abc', 'apiKey' => 'abc123')); $result = $proxy->catalogProductList((object)array('sessionId' => $sessionId->result, 'filters' => null)); return $result->result(); 注意:https : //datatables.net/examples/styling/bootstrap4 如何运行API soap v2作为限制10,并且当我单击第2页时应该是下一个10负载吗?
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.