本文介绍了在模拟器中更新应用程序磁贴时出现异常的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在模拟器中运行应用程序时,调试控制台中会显示以下错误:


0x803e0102 - JavaScript运行时错误:提供的应用程序标识符无效。


var notification,tile,tileAttributes;
$
tile = TileUpdateManager.getTemplateContent(Notifications.TileTemplateType。 tileWideText03);
$
tileAttributes = tile.getElementsByTagName(" text");
$
tileAttributes [0] .appendChild(tile.createTextNode("" + count +") ; items"));
$
notification = new TileNotification(tile);

TileUpdateManager.createTileUpdaterForApplication()。update(notification); //异常


由于我无法在任何地方设置应用程序标识符,我认为我的应用程序安装错误导致错误?


我也觉得瓷砖更新并不总是在模拟器中工作

解决方案


The following error is printed in the debug console when running the app in the simulator:

0x803e0102 - JavaScript runtime error: The application identifier provided is invalid.

when this code is called:

var notification, tile, tileAttributes;
tile = TileUpdateManager.getTemplateContent(Notifications.TileTemplateType.tileWideText03);
tileAttributes = tile.getElementsByTagName("text");
tileAttributes[0].appendChild(tile.createTextNode("" + count + " items"));
notification = new TileNotification(tile);
TileUpdateManager.createTileUpdaterForApplication().update(notification); // Exception

Since I cannot set the application identifier anywhere, I guess its an error with a faulty installation of my app?

I also got the feeling that tile updates not always work in the simulator

解决方案


这篇关于在模拟器中更新应用程序磁贴时出现异常的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-29 22:33