2016-04-19 66 views
1

我正在编写一个基于NativeScript的手机应用程序,在Typescript/JavaScript中。这段代码在蓝牙扫描完成后调用。我需要找到正确的服务。我的代码运行起来,直到我尝试从选项中选择我想要的服务。该services.filter(function (obj) {线似乎导致应用程序崩溃,但错误日志没有多大意义的,我......JavaScript过滤器阵列抛出错误和崩溃

console.log("Connect Variable"); 
var services: Array<string>; 
var service: any; 
services = []; //initialise array 
bluetooth.connect(
    { 
    UUID: _peripheral.UUID, 
    // NOTE: we could just use the promise as this cb is only invoked once 
     onConnected: function (peripheral) { 
      console.log("------- Peripheral connected: " + JSON.stringify(peripheral)); 
      // Put all Services into an Array 
      peripheral.services.forEach(function (value) { 
       console.log("---- ###### adding service: " + value.UUID); 
       services.push(value); 
      }); 

      //search for the correct service 
      service = peripheral.services.filter(function (obj) { // <- PROBLEM LINE ****************** Caudsing the app to crash out ... 
       return obj.UUID == 'A000'; 
      }); 
     }, 
    } 
); 

这里是控制台日志:

CONSOLE LOG file:///app/Pages/Home/home.component.js:145:32: ---- ###### adding service: A000 
CONSOLE LOG file:///app/Pages/Home/home.component.js:145:32: ---- ###### adding service: 180A 
***** Fatal JavaScript exception - application has been terminated. ***** 
Native stack trace: 
1 0xbea99 NativeScript::FFICallback<NativeScript::ObjCMethodCallback>::ffiClosureCallback(ffi_cif*, void*, void**, void*) 
2 0x4ae381 ffi_closure_inner_SYSV 
3 0x4b20b8 ffi_closure_SYSV 
4 0x25e59d15 <redacted> 
5 0x25e59e4b <redacted> 
6 0x25e5f9f3 <redacted> 
7 0x208d1823 <redacted> 
8 0x208d180f <redacted> 
9 0x208dfba9 <redacted> 
10 0x20d25bdd <redacted> 
11 0x20d240d7 <redacted> 
12 0x20c732e9 CFRunLoopRunSpecific 
13 0x20c730d5 CFRunLoopRunInMode 
14 0x22263ac9 GSEventRunModal 
15 0x253380b9 UIApplicationMain 
16 0x4b202c ffi_call_SYSV 
17 0x4ae0c3 ffi_call 
18 0x91a0b NativeScript::FFICall::call(JSC::ExecState*) 
19 0x2e4931 JSC::LLInt::setUpCall(JSC::ExecState*, JSC::Instruction*, JSC::CodeSpecializationKind, JSC::JSValue, JSC::LLIntCallLinkInfo*) 
20 0x2e2579 llint_slow_path_call 
21 0x2ea1ed llint_entry 
22 0x2ea1f9 llint_entry 
23 0x2ea1f9 llint_entry 
24 0x2ea4c1 llint_entry 
25 0x2ea1f9 llint_entry 
26 0x2e5021 vmEntryToJavaScript 
27 0x2a4cd9 JSC::JITCode::execute(JSC::VM*, JSC::ProtoCallFrame*) 
28 0x28d713 JSC::Interpreter::executeCall(JSC::ExecState*, JSC::JSObject*, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) 
29 0x38be87 JSC::call(JSC::ExecState*, JSC::JSValue, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&, WTF::NakedPtr<JSC::Exception>&) 
30 0x9e943 NativeScript::GlobalObject::moduleLoaderEvaluate(JSC::JSGlobalObject*, JSC::ExecState*, JSC::JSValue, JSC::JSValue) 
31 0x44c4f9 JSC::ModuleLoaderObject::evaluate(JSC::ExecState*, JSC::JSValue, JSC::JSValue) 
JavaScript stack trace: 
1 [email protected]:///app/Pages/Home/home.component.js:157:55 
2 [email protected]:///app/tns_modules/nativescript-bluetooth/bluetooth.js:111:23 
3 [email protected][native code] 
4 [email protected]:///app/tns_modules/application/application.js:233:26 
5 @file:///app/tns_modules/nativescript-angular/application.js:65:26 
6 [email protected]:///app/tns_modules/zone.js/dist/zone-node.js:542:38 
7 [email protected]:///app/tns_modules/nativescript-angular/application.js:64:23 
8 [email protected]:///app/main.js:5:36 
9 [email protected][native code] 
10 [email protected][native code] 
11 @[native code] 
12 [email protected][native code] 
JavaScript error: 

我有什么做错了?

更新:

继普京的回答,我有这样的:

for (let i = 0; i < peripheral.service.count; i++) { 
    if (peripheral.services.objectAtIndex(i).UUID == 'A000') { 
     service = peripheral.services.objectAtIndex(i); 
     console.log("selected service: "); 
    } 
} 

但是,我仍然得到这样的输出:

JavaScript error: file:///app/Pages/Home/home.component.js:98:56: JS ERROR TypeError: undefined is not an object (evaluating 'peripheral.service.count')

+0

传递给'bluetooth.connect'的对象的语法是否正确?我没有看到关闭'})'。 –

+0

@AdityaSingh我认为是的,这只是我已经提出的摘录。阿洛斯,代码运行到这一点的事实。 –

回答

0

最有可能这是NSArray的不是JavaScript数组,这就是为什么你不能使用filter()。可能的解决方案是循环本地NSArray并仅复制需要的对象,或者可以复制所有对象并稍后使用filter。下面是如何复制所有对象的示例:

var services = []; 
for (let i = 0; i < peripheral.services.count; i++) { 
    services.push(peripheral.services.objectAtIndex(i)); 
} 
+0

我编辑了我的问题,请参阅您的解决方案抛出的错误 - 如果您可以看看,我会非常感激 –

+0

您可以验证此对象是否为NSArray?简单的console.log与typeof将完成这项工作。 –

+0

我得到'undefined'用于peripheral.service ... –