Вопрос

Использование JavaScriptCore, если у меня есть NSString в Objective-C, как это:

NSString *objcName = @"Kristof";
.

и контекст jsglobalcontextref вызывают jscontextref .

Как передаю значение объекта-C objcname в именованную переменную JavaScript в jscontextref?Я думал по линии:

JSStringRef jsNameRef = JSStringCreateWithUTF8CString([objcName UTF8String]);
JSValueRef jsValueRef = JSValueMakeString(jsContextRef, jsNameRef);
.

Допустим, имя переменной будет «jsname».Мне нужно еще пару звонков (или, может быть, даже один звонок), что-то вроде:

// This part is pseudo-code for which I would like to have proper code:
JSValueStoreInVarWithName(jsContextRef,"jsName",jsValueRef);
.

Так что в конце этого JavaScript правильно оценится при названии этого в объекте-C:

NSString *lJavaScriptScript = @"var jsUppercaseName = jsName.toUpperCase();";
JSStringRef scriptJS = JSStringCreateWithUTF8CString([lJavaScriptScript UTF8String]);
JSValueRef exception = NULL;
JSValueRef result = JSEvaluateScript(jsContextRef, scriptJS, NULL, NULL, 0, &exception);
.

Это было полезно?

Решение

Я нашел ответ в Пример кода для JavascriptCoreheadStart , более конкретно файл jswrappers.m.У этого есть этот метод:

/* -addGlobalStringProperty:withValue: adds a string with the given name to the
 global object of the JavaScriptContext.  After this call, scripts running in
 the context will be able to access the string using the name. */
- (void)addGlobalStringProperty:(NSString *)name withValue:(NSString *)theValue {
    /* convert the name to a JavaScript string */
    JSStringRef propertyName = [name jsStringValue];
    if ( propertyName != NULL ) {
        /* convert the property value into a JavaScript string */
        JSStringRef propertyValue = [theValue jsStringValue];
        if ( propertyValue != NULL ) {            
            /* copy the property value into the JavaScript context */
            JSValueRef valueInContext = JSValueMakeString( [self JSContext], propertyValue );
            if ( valueInContext != NULL ) {                
                /* add the property into the context's global object */
                JSObjectSetProperty( [self JSContext], JSContextGetGlobalObject( [self JSContext] ),
                                propertyName, valueInContext, kJSPropertyAttributeReadOnly, NULL );
            }
            /* done with our reference to the property value */
            JSStringRelease( propertyValue );
        }
        /* done with our reference to the property name */
        JSStringRelease( propertyName );
    }
}
.

Что именно то, что мне нужно.Код для метода JSStringValue находится в NSStringWanpers.m в том же проекте и является:

/* return a new JavaScriptCore string value for the string */
- (JSStringRef)jsStringValue {
    return JSStringCreateWithCFString( (__bridge CFStringRef) self );
}
.

Это кажется работать.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top