gpt4 book ai didi

javascript - AngularJS:如何公开服务 API/变量

转载 作者:行者123 更新时间:2023-11-28 20:19:03 25 4
gpt4 key购买 nike

尝试使用 AngularJS 服务制作一个简单的示例。

我想在我的数据模型(服务)中包含一些变量和函数,并通过 Controller 公开它们并将它们绑定(bind)到 View 。

问题是 Controller / View 以某种方式获取模型的新实例,我真的看不出这有什么用,因为我想使用其他 Controller / View 来查看相同的数据/API服务,而不是每次都创建一个新实例。

这是一个关于 plunker 的示例:http://plnkr.co/edit/AKZLaT2HrkBPMkICsski?p=preview

/*****script.js******/
var app = angular.module('app', []);

app.service('myService', function() {

// my data here
var text = 'text',
text2 = 'text2';

// my function here
var copyText = function(){
console.log('BEFORE text: '+ text + ' text2: ' + text2);
text2 = text;
console.log('AFTER text: '+ text + ' text2: ' + text2);
};

// expose my variables/API here
return {
text: text,
text2: text2,
copyText: copyText
};
});

app.controller('myCtrl', [ '$scope', 'myService', function($scope, myService){

$scope.myService = myService;

}]);


/*****index.html******/
...
<div ng-controller="myCtrl">
<h1>angular service exposure</h1>
<input type="text" ng-model="myService.text">
<p>text: {{ myService.text }}</p>
<button ng-click="myService.copyText()">copy text to text2</button>
<p>text2: {{ myService.text2 }}</p>
</div>

如果您打开控制台,当您按下按钮时,您将看到模型的“真实”值,在将文本复制到 text2 之前和之后。哪些不是我在 Controller View 中看到的......

最佳答案

查看我的edit

我做了一些更改,将 ng-model 作为 copyText() 的参数:

 <div ng-controller="myCtrl">
<h1>angular service exposure</h1>
<input type="text" ng-model="myService.value">
<p>text: {{ myService.text }}</p>
<button ng-click="myService.copyText(myService.value)">copy text to text2</button>
<p>text2: {{ myService.value }}</p>
</div>

JS

var app = angular.module('app',  []);

app.service('myService', function() {

// my data here
var text = 'text',
text2 = 'text2';



// my function here
var copyText = function(value){

console.log('BEFORE text: '+ text + ' text2: ' + text2);
text2 = value;
console.log('AFTER text: '+ text + ' text2: ' + text2);
};

// expose my variables/API here
return {
text: text,
text2: text2,
copyText: copyText
};
});



app.controller('myCtrl', [ '$scope', 'myService', function($scope, myService){

$scope.myService = myService;

}]);

希望对你有帮助

关于javascript - AngularJS:如何公开服务 API/变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18673290/

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