gpt4 book ai didi

goinstant - 如何从 goinstant 中检索存储的值

转载 作者:行者123 更新时间:2023-12-01 12:42:09 24 4
gpt4 key购买 nike

我做错了什么。我正在尝试获取我在 goinstant 中的储值。我有一个用户名的房间。警报函数显示的值是“[object Object]”。这是我的代码:(我故意遗漏了脚本)。我在 goInstant 上提供了我个人数据的快速屏幕截图以供引用 http://screencast.com/t/BtLqfrorg

<h2>Angular JS Test</h2>
<div ng-app="testapp" data-ng-controller="personCtrl">
<input type="text" ng-model="userName" />{{ userName }}
<button type="submit" id="save" name="save" >Save</button>
<script>
var testApp = angular.module('testapp', ['goangular']);

testApp.config(function($goConnectionProvider) {
$goConnectionProvider.$set('https://goinstant.net/<mykey>/test');
});

testApp.controller('personCtrl', function($scope, $goKey) {
// $goKey is available

$scope.userName = $goKey('/person/userName').$sync();
alert($scope.userName);

});
</script>
</div>

最佳答案

您的示例表明您希望 $scope.userName 是原始值(字符串)。它实际上是一个模型。模型提供了一个简单的接口(interface)来更新你的应用程序的状态,在 GoAngular 中,该状态会自动神奇地保存到你的 GoInstant 应用程序中。

您可以找到有关 GoAngular 模型的更多文档 here .我认为一个工作示例可能会有所帮助,所以我创建了一个 Plunker . 让我们研究一下 script.js:

angular
.module('TestThings', ['goangular'])
.config(function($goConnectionProvider) {
$goConnectionProvider.$set('https://goinstant.net/mattcreager/DingDong');
})
.controller('TestCtrl', function($scope, $goKey) {
// Create a person model
$scope.person = $goKey('person').$sync();

// Observe the model for changes
$scope.$watchCollection('person', function(a, b) {
console.log('model is', a.$omit()); // Log current state of person
console.log('model was', b.$omit()); // Log the previous state of person
});

// After 2000 ms set the userName property of the person model
setTimeout(function() {
$scope.person.$key('userName').$set('Luke Skywalker');
}, 2000);

// Set the userName property of the person model
$scope.person.$key('userName').$set('Darth Vader');
});

关于goinstant - 如何从 goinstant 中检索存储的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23371202/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com