如果您的JSON API存儲(chǔ)為除主機(jī)根目錄之外,請(qǐng)將網(wǎng)址添加到所有請(qǐng)求前。一些API需要HTTP頭,頭,屬性和Ember數(shù)據(jù)與每個(gè)Ajax請(qǐng)求一起發(fā)送。通過(guò)更改主機(jī)來(lái)發(fā)出HTTP請(qǐng)求。
DS.RESTAdapter.extend({ host: 'url' });
<!DOCTYPE html> <html> <head> <title>Emberjs Customizing URLs</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"> <!-- displaying the namespace of DS.attr --> <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', //to change the host that requests are sent to, set the host property host: 'https://tutorialspoint.com', //Custom Http Headers headers: { 'API_KEY': 'secret key', 'ANOTHER_HEADER': 'Some header value' } }); </script> </body> </html>
讓我們執(zhí)行以下步驟,看看上面的代碼如何工作:
將上面的代碼保存在model_cust_url.html文件中
在瀏覽器中打開(kāi)此HTML文件。
更多建議: