gpt4 book ai didi

javascript - 钛金应用程序中的Unicode字符 'BULLET'

转载 作者:行者123 更新时间:2023-12-02 16:54:25 49 4
gpt4 key购买 nike

我在使用 Titanium 开发的 Android 应用程序中遇到了 BULLET 字符问题。

我有这部分代码:

    function getFormattedPizza()
{
var text = win.crust + ' pizza with:\n';
if (win.toppings.length == 0)
{
text += '• Plain (cheese pizza)\n';
}
else
{
for (var i = 0; i < win.toppings.length; i++)
{
text += '&bull; ' + win.toppings[i] + '\n';
}
}
return text;
}

在我的应用程序中,我看到字符串 &bull ;普通(奶酪披萨),不是无序列表。

这样我就可以显示点列表了?

最佳答案

您可以使用'\u2022'+'Plain(奶酪披萨)'代替&bull\u2022是unicode子弹。

示例代码:

var lbl = Ti.UI.createLabel({
text : '\u2022'+' HELLO'
});
win.add(lbl);

有关更多 unicode,您可以查看此 Link ,或者引用这个question .

希望这对您有帮助。 :)

关于javascript - 钛金应用程序中的Unicode字符 'BULLET',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26295840/

49 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com