HarmonyOS occur exception need return错误

在返回字符串时用:

napi_create_typedarray(env, napi_int8_array, len, output_buffer, 0, &output_array); 

就能正确返回,但是我们需要用Unicode字符串,需要用:

napi_create_typedarray(env, napi_int16_array, len, output_buffer, 0, &output_array);

报错如下:

07-04 09:43:23.613   12990-12990  C03F00/ArkCompiler             com.examp...lication  E     [default] [Call:2994] occur exception need return
07-04 09:43:23.613   12990-12990  C03F00/ArkCompiler             com.examp...lication  E     RangeError: The newByteLength is out of range.

要怎么处理才能正确返回Unicode字符串?

HarmonyOS
2天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
zbw_apple

问题原因是长度超出范围了,可以参考:

napi_status napi_create_typedarray(napi_env env,
                                   napi_typedarray_type type,
                                   size_t length,
                                   napi_value arraybuffer,
                                   size_t byte_offset,
                                   napi_value* result)
 env: The environment that the API is invoked under.
 type: Scalar datatype of the elements within the TypedArray.
 length: Number of elements in the TypedArray.
 arraybuffer: ArrayBuffer underlying the typed array.
 byte_offset: The byte offset within the ArrayBuffer from which to start projecting the TypedArray.
 result: A napi_value representing a JavaScript TypedArray.
分享
微博
QQ
微信
回复
2天前
相关问题
HarmonyOS forEach return退出循环
0浏览 • 0回复 待解决
编译报错Found exception如下
1486浏览 • 1回复 待解决
. > An error occur in configuration.
6148浏览 • 1回复 待解决
code linter 校验return Promise<string>类型
1832浏览 • 1回复 待解决
[Fail]ExecuteCommand need connect-key?
9943浏览 • 2回复 待解决
HarmonyOS 错误提示如下
169浏览 • 1回复 待解决
HarmonyOS instanceof判断错误
69浏览 • 1回复 待解决
webview错误码105 是什么错误
852浏览 • 1回复 待解决
HarmonyOS NDK编译错误
541浏览 • 1回复 待解决
HarmonyOS 上架提示错误
40浏览 • 1回复 待解决
HarmonyOS 定义对象赋值错误
31浏览 • 1回复 待解决
提问
该提问已有0人参与 ,帮助了0人