EmberJS 自定义适配器的模型
2018-01-04 11:13 更新
描述
如果您的JSON API存储为非主机根目录,则通过覆盖Ember.js的属性和方法来自定义如何检索和保存记录,从而将URL作为所有请求的前缀。
语句
DS.RESTAdapter.extend({ //include the adapters });
例子
<!DOCTYPE html> <html> <head> <title>Emberjs Customizing The Adapter</title> <!-- CDN's --> <script src="https://cdnjs.cloudflare.com/ajax/libs/handlebars.js/3.0.1/handlebars.min.js"></script> <script src="https://code.jquery.com/jquery-2.1.3.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/ember.js/1.10.0/ember.min.js"></script> <script src="https://builds.emberjs.com/tags/v1.10.0-beta.3/ember-template-compiler.js"></script> <script src="https://builds.emberjs.com/release/ember.debug.js"></script> <script src="https://builds.emberjs.com/beta/ember-data.js"></script> </head> <body> <script type="text/x-handlebars" data-template-name="fruits"> <h1>Namespace is: <small>{{namespace}}</small></h1> </script> <script type="text/javascript"> Fruits = Ember.Application.create(); Fruits.ApplicationAdapter = DS.FixtureAdapter.extend(); Fruits.Router.map(function () { this.resource('fruits', { path: '/' }); }); Fruits.FruitsAdapter = DS.RESTAdapter.extend({ //set namespace property namespace: 'api', //default adapter defaultSerializer: '-default', //setting up the host property host: 'https://tutorialspoint.com', //Custom Http Headers headers: { 'API_KEY': 'secret key', 'ANOTHER_HEADER': 'Some header value' } }); </script> </body> </html>
输出
让我们执行以下步骤,看看上面的代码如何工作:
将上面的代码保存在model_cust_adp.html文件中
在浏览器中打开此HTML文件。
以上内容是否对您有帮助:
更多建议: