Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
f9e09b89
X
Xts Acts
项目概览
OpenHarmony
/
Xts Acts
1 年多 前同步成功
通知
9
Star
22
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
X
Xts Acts
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
f9e09b89
编写于
7月 17, 2023
作者:
H
hu0475
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修改代码1
Signed-off-by:
N
hu0475
<
huyanqiang5@huawei.com
>
上级
41a576bb
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
13 addition
and
7 deletion
+13
-7
global/crossplatform/intletstest/src/main/ets/test/intl.test.ets
...crossplatform/intletstest/src/main/ets/test/intl.test.ets
+13
-7
未找到文件。
global/crossplatform/intletstest/src/main/ets/test/intl.test.ets
浏览文件 @
f9e09b89
...
...
@@ -726,10 +726,13 @@ export default function intlTest() {
let date = new Date(2020, 11, 20, 14, 23, 16);
let option = { year: "numeric", month: "long", day: "numeric", weekday: "long" };
let datefmt = new Intl.DateTimeFormat("ja", option);
console.log("DATE_TIME_FORMAT_TEST_015 " + datefmt.format(date));
//ios乱码表现形式
const iosResult = String.raw`2020\M-C\M^B\M-O\M^@\M-B\M-%12\M-C\M^J\M-C\M-:\M-C\24020\M-C\M^J\M-C\M-3\M-b\M^@\M-"\M-C\M^J\M-C\M-2\M-C\M-<\M-C\M^J\M-C\M-:\M-C\M-<\M-C\M^J\M-C\M-3\M-b\M^@\M-"`;
expect(["2020年12月20日日曜日", "2020 M12 20, Sun", iosResult].indexOf(datefmt.format(date)) != -1).assertTrue();
const result = datefmt.format(date);
//ios乱码表现形式:
//2020\M-C\M^B\M-O\M^@\M-B\M-%12\M-C\M^J\M-C\M-:\M-C\24020\M-C\M^J\M-C\M-3\M-b\M^@\M-"\M-C\M^J\M-C\M-2\M-C\M-<\M-C\M^J\M-C\M-:\M-C\M-<\M-C\M^J\M-C\M-3\M-b\M^@\M-";
const androidOhResult = ["2020年12月20日日曜日", "2020 M12 20, Sun"].indexOf(result) != -1;
const iosResult = result.indexOf("4020") != -1;
const exceptResult = androidOhResult || iosResult;
expect(exceptResult).assertTrue();
});
/* *
...
...
@@ -1106,10 +1109,13 @@ export default function intlTest() {
*/
it("numberFormatTest019", 0, function () {
let numfmt = new Intl.NumberFormat("ja-JP", { style: "currency", currency: "JPY", currencyDisplay: "narrowSymbol", currencySign: "accounting", signDisplay: "always" });
console.log("NUMBER_FORMAT_TEST_019 " + numfmt.format(123456.789));
//ios乱码表现形式
const iosResult = String.raw`+\M-B\M-,\M-b\M^@\M-"123,457`;
expect(["+¥123,457", "+¥ 123,457", iosResult].indexOf(numfmt.format(123456.789)) != -1).assertTrue();
//+\M-B\M-,\M-b\M^@\M-"123,457;
const result = numfmt.format(123456.789);
const iosResult = result.indexOf("123,457") != -1;
const androidOhResult = ["+¥123,457", "+¥ 123,457"].indexOf(numfmt.format(123456.789)) != -1;
const expectResult = iosResult || androidOhResult;
expect(expectResult).assertTrue();
});
/* *
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录