2

我在 2011 电视上运行 2.5 SDK。

我无法使用此处找到的网络 API 检查网络连接:http: //www.samsungdforum.com/upload_files/files/guide/data/html/html_2/api_reference/javascript_apis/deviceapi/deviceapi_network.html

这些值应该返回 1 或 0,但我得到的只是 -1。

这是我的代码:

索引.html

<object id='pluginNetwork' classid='clsid:SAMSUNG-INFOLINK-NETWORK'></object>
<object id='pluginObjectTV' classid='clsid:SAMSUNG-INFOLINK-TV'></object>

附上js:

var network = document.getElementById('pluginNetwork');
var tvPlugin = document.getEelementById('pluginObjectTV'); 
var ProductType = tvPlugin.GetProductType();
var phyConnection = network.CheckPhysicalConnection(ProductType); //returns -1
var http = network.CheckHTTP(ProductType); //returns -1
var gateway = network.CheckGateway(ProductType); //returns -1
4

1 回答 1

2

首先,据我所知,没有像对象这样GetProductType的功能。SAMSUNG-INFOLINK-NETWORK

替换GetProductTypeGetActiveType它应该可以工作。

于 2012-08-17T14:34:09.913 回答