我創建使用離子演示應用程序與工作燈和它的工作對的Android但遇到錯誤IOS ,當我用手機瀏覽器模擬器和調試在IOS環境中,我得到了如下因素的錯誤消息:IBM工作燈V6.1.0.1:錯誤使用離子與框架時,工作燈和iOS環境中運行
Uncaught InvalidCharacterError: Failed to execute 'add' on 'DOMTokenList': The token provided ('platform-ios - iphone') contains HTML space characters, which are not valid in tokens.
我剛剛加入的index.html文件離子:
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<title>index</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=0">
<link rel="shortcut icon" href="images/favicon.png">
<link rel="apple-touch-icon" href="images/apple-touch-icon.png">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="ionic/css/ionic.css">
<script src="ionic/js/ionic.bundle.js"></script>
</head>
<body style="display: none;">
<!--application UI goes here-->
<div class="bar bar-header bar-positive">
<h1 class="title">bar-positive</h1>
</div>
<script src="js/initOptions.js"></script>
<script src="js/main.js"></script>
<script src="js/messages.js"></script>
</body>
</html>
我也在移動設備上測試了Android和IOS,並且只在IOS設備上出錯。
我不知道如何解決這個問題。誰能幫忙?謝謝。
您至少需要提供顯示這個問題的測試用例項目.. –
對不起,我編輯了我的問題... – NickNguyen