可以将ElementRef属性设置为Blazor中的javascript互操作返回值吗?

时间:2018-05-14 22:25:00

标签: c# asp.net-core blazor

我正在修补textarea元素上的CodeMirror。我使用javascript互操作来完成这个,它在应用代码镜像时工作正常。 但是我的目的是返回该codemirror元素并将其存储在另一个elementref中。

Blazor.registerFunction('BlazorExt.CodeMirrorSetupExt', (element) =>
{
    return CodeMirror.fromTextArea(element,
    {
        mode: 'application/ld+json',
        matchBrackets: true,
        autoCloseBrackets: true,
        indentWithTabs: true,
        lineNumbers: true,
        autofocus: true,
        styleActiveLine: true,
        readOnly: false,
        autoCloseBrackets: true,
        foldGutter: true,
        height: 'auto',
        width: 'auto',
        gutters: ['CodeMirror-linenumbers', 'CodeMirror-foldgutter']
    });
});

        public static ElementRef CodeMirrorSetupExt(this ElementRef elementRef)
    {
        var result = RegisteredFunction.Invoke<ElementRef>("BlazorExt.CodeMirrorSetupExt", elementRef);
        return result;
    }

在我的组件中:

//in my html i have a textarea with ref of TextArea

ElementRef CodeMirror;
ElementRef TextArea;

protected override void OnAfterRender()
{

    CodeMirror = TextArea.CodeMirrorSetupExt();
}

理想情况下,在此之后我应该能够使用其功能更新我的codemirror ref。

    Blazor.registerFunction('BlazorExt.CodeMirrorUpdateExt', (element, Value) =>
{
    element.getDoc().setValue(Value);
});

        public static void CodeMirrorUpdateExt(this ElementRef elementRef, string Value)
    {
        var args = new object[] { elementRef, Value };
        RegisteredFunction.Invoke<object>("BlazorExt.CodeMirrorUpdateExt", args);
    }

在组件中,我应该能够像这样更新代码镜像:

CodeMirror.CodeMirrorUpdateExt("somedata");

但是我得到一个例外:Microsoft.AspNetCore.Blazor.Browser.Interop.JavaScriptException:无法读取属性&#39; getDoc&#39;为null

我想在可能的范围之外完成什么,或者将codemirror javascript对象传递给elementref是不可能的?

2 个答案:

答案 0 :(得分:1)

我扩展了@Flores的答案。不必将所有JavaScript对象都做成全局数组,而只需将新值存储在已经具有elementReference的javascript DOM对象中即可。

window.hintCodeMirrorIntegration = {
    initialize: function(element, markupMode) {
        element.codeMirrorLink = CodeMirror.fromTextArea(element,
           {
            ...
            });
        return 0;
    },

    getCode: function(element) {
        return element.codeMirrorLink.getValue();
    }

}

在c#端,我将ElementReference传递到文本区域。我继续引用该引用,当我想要CodeMirror对象的代码输出时,可以在我已有引用的TextArea中找到它。这也很好地将CodeMirror对象的生存期与其要阴影的文本区域联系起来。

 private ElementReference textToEdit;
 protected override Task OnAfterRenderAsync()
  {
      return javascriptRuntime.InvokeAsync<int>("hintCodeMirrorIntegration.initialize", textToEdit,
          Context.CurrentAsset.MimeType);
  }

private async Task Save()
{
    var code = await javascriptRuntime.InvokeAsync<string>("hintCodeMirrorIntegration.getCode", textToEdit);
    //... save the result in the database
}

答案 1 :(得分:0)

不,这还不可能。 See here

您可以做的是全局注册您的javascript对象并将该引用用于最终的第二次使用。像这样:

Blazor.registerFunction('BlazorExt.CodeMirrorSetupExt', (element) =>
{
  window.mybject = CodeMirror.fromTextArea(element,
  {
     mode: 'application/ld+json',
     matchBrackets: true,
     autoCloseBrackets: true,
     indentWithTabs: true,
     lineNumbers: true,
     autofocus: true,
     styleActiveLine: true,
     readOnly: false,
     autoCloseBrackets: true,
     foldGutter: true,
     height: 'auto',
     width: 'auto',
     gutters: ['CodeMirror-linenumbers', 'CodeMirror-foldgutter']
   });
   return true;
 });

public static void CodeMirrorSetupExt(this ElementRef elementRef)
{
    RegisteredFunction.Invoke<bool>("BlazorExt.CodeMirrorSetupExt", elementRef);
}

然后:

  Blazor.registerFunction('BlazorExt.CodeMirrorUpdateExt', (element, Value)=>{
    window.myObject.getDoc().setValue(Value);
});

当然,您可以使用数组和键作为参考,使其更好。