根据WL.TabBar.addItem关于title
参数的文档:
WL.TabBar.addItem(id, callback, title, options);
title Mandatory string. The title of the tab. If null is passed, no title is displayed.
但是,如果我像这样传递值null
:
WL.TabBar.addItem("myId", function(){ ... }, null, { ... });
我收到此错误:
方法 WL.TabBar.addItem 的调用无效;无效值“null”(对象),预期类型“字符串”。
如果我传递一个空字符串" "
,我看不到标题,但在图标下方的底部有空间距。