去年我上传了一个使用以下需求集和方法的Office Store加载项:
$sql=select price from table where type=1";
$exesql=mysqli_query($sql) or die(mysqli_error());
while($row=mysql_fetch_array($exesql)){
$tpeOneprice=$tpeOneprice+$row['price'];
}
echo $tpeOneprice;
According to the documentation,所有这些都应在Word Online中提供。实际上,即使Microsoft Office Add-in Manifest Validator列出了Word Online作为支持的平台:
但是,最近我注意到了:
为什么呢?我做错了什么?
答案 0 :(得分:0)
如果在将任何需求集发布到GA之前将加载项提交到Office应用商店,那么您的加载项就不会被标记为与Word Online兼容。 如果是这种情况,则通过Seller Dashboard向Office Store列表提交更新应解决此问题,而无需您执行其他操作。请注意,次要更新(例如加载项描述)足以触发重新验证过程。
在测试说明中包含此问题的链接,如果在重新提交时未解决标记问题,验证团队将直接与您联系。