指定查询参数(Specifying Query Parameters)
优质
小牛编辑
129浏览
2023-12-01
您可以在路由驱动的控制器上指定查询参数,这些控制器可以绑定到URL中,并通过在控制器上声明它们以使它们处于活动状态来配置查询参数。 您可以通过定义数组的query parameterfilter的计算属性来显示模板。
语法 (Syntax)
Ember.Controller.extend ({
queryParams: ['queryParameter'],
queryParameter: null
});
例子 (Example)
下面给出的示例显示了在路由驱动的控制器上指定查询参数。 创建一个新路由并将其命名为specifyquery并打开router.js文件以定义URL映射 -
import Ember from 'ember';
//Access to Ember.js library as variable Ember
import config from './config/environment';
//It provides access to app's configuration data as variable config
//The const declares read only variable
const Router = Ember.Router.extend ({
location: config.locationType,
rootURL: config.rootURL
});
//Defines URL mappings that takes parameter as an object to create the routes
Router.map(function() {
this.route('specifyquery');
});
//It specifies Router variable available to other parts of the app
export default Router;
使用以下代码打开在app/templates/下创建的application.hbs文件 -
<h2>Specifying Query Parameters</h2>
{{#link-to 'specifyquery'}}Click Here{{/link-to}}
当您单击上面的链接时,页面应该打开一个表单。 打开specifyquery.hbs文件以在路由驱动的控制器上发送参数 -
//sending action to the addQuery method
<form {{action "addQuery" on = "submit"}}>
{{input value = queryParam}}
<input type = "submit" value = "Send Value"/>
</form>
{{outlet}}
现在定义queryParam filtered数组的计算属性,它将显示指定specifyquery模板 -
import Ember from 'ember';
export default Ember.Controller.extend ({
//specifying the 'query' as one of controller's query parameter
queryParams: ['query'],
//initialize the query value
query: null,
//defining a computed property queryParam
queryParam: Ember.computed.oneWay('query'),
actions: {
addQuery: function () {
//setting up the query parameters and displaying it
this.set('query', this.get('queryParam'));
document.write(this.get('query'));
}
}
});
输出 (Output)
运行ember服务器,您将收到以下输出 -
当您单击该链接时,它将提供一个输入框以输入值并向addQuery方法发送操作 -
单击按钮后,它会显示右侧的键值对? 在URL中 -