行動裝置疑難排解 (SharePoint Foundation 2010)
適用版本: SharePoint Foundation 2010
上次修改主題的時間: 2016-11-30
本文協助您解決行動裝置可能遇到的問題。
本文內容:
- Apple iPad 使用者不會被重新導向至行動裝置檢視
Apple iPad 使用者不會被重新導向至行動裝置檢視
Apple iPad 裝置不支援 SharePoint 標準檢視,反而是使用者可以使用行動裝置檢視,在自己的 iPad 裝置上檢視 SharePoint 內容。依預設,會將 iPad 使用者重新導向至 SharePoint 網站的標準檢視。這個問題是因為瀏覽器定義檔 (compat.browser) 中未包含 iPad 使用者代理程式。若要變更 iPad 使用者的預設檢視,您必須將 iPad 使用者代理程式字串新增至 compat.browser 檔案,然後將 isMobileDevice
設定成 true
。這樣就可以將 iPad 使用者重新導向至 SharePoint 網站的行動裝置檢視。
以下範例顯示可以用於 iPad 裝置的使用者代理程式字串。
<!-- iPad Safari Browser -->
<!-- sample UA "Mozilla/5.0 (iPad; U; CPU OS 4_2_1 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8C148 Safari/6533.18.5" -->
<browser id="iPadSafari" parentID="AppleSafari">
<identification>
<userAgent match="iPad" />
<userAgent match="Mobile" />
</identification>
<capabilities>
<capability name="isMobileDevice" value="true" />
<capability name="canInitiateVoiceCall" value="true" />
<capability name="optimumPageWeight" value="1500" />
<capability name="requiresViewportMetaTag" value="true" />
<capability name="supportsTouchScreen" value="true" />
<capability name="telephoneNumberDetectionDisabled" value="true" />
</capabilities>
</browser>
如需如何更新 compat.browser 檔案的詳細資訊,請參閱<設定行動裝置檢視 (SharePoint Foundation 2010)>的<修改瀏覽器定義檔 (compat.browser)>一節。如需如何使用 iPad 裝置搭配 SharePoint 2010 產品 的詳細資訊,請參閱 SharePoint 2010 和 Apple iPad (https://go.microsoft.com/fwlink/?linkid=214218&clcid=0x404)。
See Also
Concepts
規劃行動裝置 (SharePoint Foundation 2010)
行動管理 (SharePoint Foundation 2010)