1

我正在使用带有 NativeScript 的 Telerik AppBuilder 编写跨平台移动应用程序。我想弄清楚如何在 TextField 上获得基本的“blur”或“onTextChanged”事件。我可以弄清楚如何做诸如“点击”事件之类的事情,但是为什么很难找到一个做“模糊”或“onTextChanged”的人的样本呢?

我试过这个:

var tagField = view.getViewById(page, "tfDescription")
tagField.set("onblur", function(eventData) {
    pageData.set("debug", "blur this field: " + JSON.stringify(eventData));    
});

我还尝试了 xml 中我能想到的每个属性:

<TextField id="tfDescription" blur="blur" onblur="blur" onLoseFocus="blur" focusLost="blur" textChanged="blur" row="2" text="{{ description }}" />

这些都不起作用。有谁知道如何做到这一点?

谢谢

4

4 回答 4

3

据我所知,NativeScript 中没有 blur(-like) 事件。但是,您可以在文本更改时做出反应。

您要做的是利用NativeScript 中的数据绑定机制可观察对象。

简而言之,数据绑定将允许您将用户界面(通常在您的 XML 文件中描述)与您的业务模型/数据对象连接起来。数据绑定可以是“一种方式”,这意味着您在数据对象中所做的任何更改都将反映在 UI 中。它也可以是两种方式,这意味着您在 UI 中所做的任何更改也将反映在您的数据对象中。

在您的情况下,您需要两种方式绑定,因为您希望 UI(用户输入文本)中发生的任何事情都反映在您的模型中。

例子

xml

假设你有这个 xml:

<Page xmlns="http://www.nativescript.org/tns.xsd" loaded="pageLoaded">
 <StackLayout>
   <TextField text="{{ description }}" />
 </StackLayout>
</Page>

js

为了更容易理解,我已经注释了内联。

var observable = require("data/observable");

function pageLoaded(args) {
    var page = args.object;

    /**
     * Creating a new Observable object.
     */
    var contextObj = new observable.Observable();

    /**
     * Setting the property 'description' to 'hi there'.
     * In your XML you'll attach this property to the
     * Text field as such:
     * <TextField text="{{ description }}" />
     * This means that the Text field will, by default
     * be prepopulated with 'Hi there'
     */
    contextObj.set("description", "Hi there");

    /**
     * Attaching the observable object to the
     * 'bindingContext' of the page. This is a
     * special property to which you want to attach
     * the object. By default bindings are two way.
     */
    page.bindingContext = contextObj;

    /**
     * Event listener.
     * When the user is changing the text in the UI, this gets propagated down
     * to the contextObj which will change. Here we add an event listener for
     * changes and log some information about the change that just happened.
     */
    contextObj.addEventListener(observable.Observable.propertyChangeEvent, function (event) {
        console.log('The object changed!');
        console.log('Event:        ' + event.eventName);
        console.log('propertyName: ' + event.propertyName);
        console.log('New value:     ' + event.value);
        console.log('');
    });

 }
 exports.pageLoaded = pageLoaded;
于 2015-05-28T12:18:07.933 回答
1

仅供参考,在 NativeScript 3 中,该blur事件已被添加并且可以与任何一个TextViewTextField组件一起使用。

编辑现在还有一个focus事件即将从这个拉取请求中合并。

于 2017-05-04T20:01:55.913 回答
0

好的,我没有将此标记为正确的解决方案,但如果有人看到它会有所帮助。在 Telerik 中,NativeScript 似乎有一些细微的差别。您将需要学习阅读库文件,例如 tns_modules/data/observable/observable.js,以便自己解决这些问题。例如,要创建属性更改侦听器,您需要使用以下语法:

    pageData.on(observableModule.knownEvents.propertyChange, function(propertyChangeData){
        if (propertyChangeData.propertyName != "debug"){
            pageData.set("debug", propertyChangeData.propertyName + " has been changed and the new value is: " + propertyChangeData.value);
        }
    });

请注意,您使用“observableModule.knownEvents.propertyChange”而不是“observable.Observable.propertyChangeEvent”。您不必像我所做的那样使用函数“on”而不是“addEventListener”。“on”函数实际上只是转身并调用“addEventListener”。

我希望这可以帮助那里的人。

于 2015-05-28T21:33:28.880 回答
0

在 nativescript 3+ 中,这就是我捕捉模糊事件的方式。

示例代码在 nativescript (core) 中

例子.js

const view = require("ui/core/view");
const textFieldModule = require("ui/text-field");

exports.pageLoaded = (args) => {
  let page = args.object;
  let myTextFieldView = view.getViewById(page, "myTextField");
  myTextFieldView.on(textFieldModule.TextField.blurEvent, function(eventData) {
      console.log('blur event triggered');
  }, this);
}

例子.xml

<Page loaded="pageLoaded">
  ...
  <TextField
    id="myTextField"
    hint="My Text Field"
    text="{{ myTextField }}" />
  ...
</Page>
于 2017-06-04T22:53:06.803 回答