Nativescript抽屉导航双向数据绑定

时间:2018-01-10 01:23:45

标签: angular nativescript

我正在创建使用抽屉导航模板的新应用

tns create HelloWorld --template tns-template-drawer-navigation-ng

接下来,按照在线教程我正在测试双向数据绑定。按照示例,在主页上,我有一个TextField使用[(ngModel)] =“email”和按钮(tap)= signUp()绑定到电子邮件字段,我也将NativeScriptFormsModule添加到NgModule的导入列表中。由于某种原因,双向数据绑定不仅仅是一种方式。有人遇到过类似的问题吗?

1 个答案:

答案 0 :(得分:1)

在这里,您可以找到PlayGround demo <!--Begin add noindex and nofolllow when not translated post in current lang--> <?php if ( have_posts() && is_single() ) : while ( have_posts() ) : the_post(); $lang_current =qtranxf_getLanguage(); $id = get_the_id(); $exist_translate = qtranxf_isAvailableIn($id, $lang_current); if (! ($exist_translate) ) : ?> <meta name=“robots” content=“noindex,nofollow”> <?php endif;?> <?php endwhile;?> <?php endif; ?> <!--End add noindex and nofolllow when not translate post in current language--> TextField创建双向绑定 - 使用它作为参考,将其与您的代码库进行比较