Magento / 2.2(社区)

时间:2019-02-18 09:28:09

标签: magento-2.3

如何为图层导航创建rest api?

我在api代码下面尝试了此方法,但没有获得像Web一样的确切图层导航过滤器。

appBarTitle = new TextField(
    controller: _filterController,
    decoration: new InputDecoration(
        hintText: 'Search...'
    )
);
_filterController.addListener(() {
  if (_filterController.text.isEmpty) {
  } else {
    Future.delayed(Duration(seconds: 1), () {
      userWrites(_filterController.text);
    });
  }
});

userWrites(String filterName){
  try {
//TODO: call
  }catch(_) {
 }   

}

0 个答案:

没有答案