根据本机中的选择显示选择字段

时间:2018-05-03 14:52:44

标签: android ios react-native

如何根据本机反应表单中字段中选项的选择显示另一个选择字段 请帮忙 感谢

1 个答案:

答案 0 :(得分:0)

这不一定是特定于本地的,它只是React状态管理。 基本上,也许类似于:

       .done(function (response) {

          //have angular recompile it's dom directives such as md-switch
          angular.element(document.body).injector().invoke(function ($compile) {
            var container = $("#body-container");
            var scope = container.scope();
            container.html(response);
            $compile(container.contents())(scope);
          })
        }