Search found 87 matches

by Muzzzhi
2024年 Nov 27日 09:54
Forum: 小程序开发
Topic: 播放本地音频失败
Replies: 2
Views: 662

Re: 播放本地音频失败

暂不支持包内资源音频播放,建议上传CDN后使用。

by Muzzzhi
2024年 Oct 28日 10:23
Forum: 小程序开发
Topic: getWifiList 报错没有权限无法正常获取数据
Replies: 6
Views: 1391

Re: getWifiList 报错没有权限无法正常获取数据

正常情 wifiList 数据会在 onGetWifiList 注册的回调中返回。 Android 调用前需要 用户授权 scope.userLocation。 已经联系iOS开发,说明一下: 由于苹果管控,这个能力目前智能生活、涂鸦智能 iOS 均不可用,后续文档会标注清楚。 若OEM App想使用这个能力,需要登录苹果开发者账号向苹果申请权限。 好的,那么oem app申请获得该权限后,ios的面板小程序就可以获取到数据吗? 向苹果申请成功权限之后,要走APP定制流程 https://developer.tuya.com/cn/docs/archived-documents/custom...
by Muzzzhi
2024年 Oct 18日 10:18
Forum: 小程序开发
Topic: getWifiList 报错没有权限无法正常获取数据
Replies: 6
Views: 1391

Re: getWifiList 报错没有权限无法正常获取数据

正常情 wifiList 数据会在 onGetWifiList 注册的回调中返回。 Android 调用前需要 用户授权 scope.userLocation。 useEffect(() => { onGetWifiList((res) => { console.log('获取到的Wi-Fi列表:', res) }) }, []) const handleGetWifiList = () => { authorize({ scope: 'scope.userLocation', success: () => { console.log('授权成功') getWifiList({ success...
by Muzzzhi
2024年 Oct 10日 17:36
Forum: 小程序开发
Topic: getWifiList 报错没有权限无法正常获取数据
Replies: 6
Views: 1391

Re: getWifiList 报错没有权限无法正常获取数据

需要提前申请定位权限

scope.userLocation

ty. authorize({
scope: "scope.userLocation"
})

by Muzzzhi
2024年 May 27日 10:00
Forum: 小程序开发
Topic: getDeviceInfo 编译报错
Replies: 4
Views: 1343

Re: getDeviceInfo 编译报错

图片挂了,再传一下?本身getDeviceInfo是返回一个void,需要在 success回调中获取设备信息数据。 /** * 获取设备的设备信息 */ export function getDeviceInfo(params: { /** * deviceId 设备id * 支持跨面板获取其他的设备信息,当前面板可以传当前设备的 id 来进行获取 */ deviceId: string /** dps */ dps?: Record<string, {}> complete?: () => void success?: (params: { /** 设备所处房间名 */ roomName?...
by Muzzzhi
2024年 Apr 7日 19:31
Forum: 小程序开发
Topic: Issue when using Tuya Slider Component
Replies: 6
Views: 2047

Re: Issue when using Tuya Slider Component

I have attached the package-lock.json. Oh, look at the lock file because of the sub-dependency problem of @ray-js/panel-sdk, you can first use ' npm install --legacy-peer-deps ' or' yarn 'to install the dependency, we will update @ray-js/panel-sdk. We upgraded @ray-js/panel-sdk, using version 1.10....
by Muzzzhi
2024年 Apr 7日 11:13
Forum: 小程序开发
Topic: Issue when using Tuya Slider Component
Replies: 6
Views: 2047

Re: Issue when using Tuya Slider Component

Mywatt Dev 2024年 Apr 5日 23:53

I have attached the package-lock.json.

Oh, look at the lock file because of the sub-dependency problem of @ray-js/panel-sdk, you can first use 'npm install --legacy-peer-deps' or' yarn 'to install the dependency, we will update @ray-js/panel-sdk.

by Muzzzhi
2024年 Apr 4日 20:09
Forum: 小程序开发
Topic: Issue when using Tuya Slider Component
Replies: 6
Views: 2047

Re: Issue when using Tuya Slider Component

I have installed the recommended version and I still see the error same error. WhatsApp Image 2024-04-04 at 11.35.25.jpeg I tried using your dependency but found no problem. :!: It seems that a lock is being placed on an incompatible version. Try deleting the lock file and re-installing the yarn de...