gpt4 book ai didi

javascript - AngularJS + AngularFire = 如何编辑条目

转载 作者:行者123 更新时间:2023-11-29 19:40:41 24 4
gpt4 key购买 nike

我的 $scope 有:

$scope.current_account_key - 来 self 的更新模式的 key

$scope.current_account 有一个名称:$scope.current_account.name,和一个描述 $scope.current_account.description (帐户是我的条目)

我想用这些值更新 Firebase 中的条目。

Firebase 树:

accounts
-JL7e0Obv18-Ls6TTkk8
description
name

最佳答案

您可以通过两种方式完成。

您可以获取帐户并获取特定的 child 并更新和保存 child

var ref = new Firebase(fbUrl + '/accounts');
var accounts = $firebase(ref);

var child = accounts.$child(key);
// Set any value to child and save
// child.name = 'changed name';
child.$save();

(或)

直接获取子元素

var ref = new Firebase(fbUrl + '/accounts/' + key);
$scope.account = $firebase(ref);

// Set any value to account and save
// account.name = 'changed name';
$scope.account.$save();

关于javascript - AngularJS + AngularFire = 如何编辑条目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23215569/

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