Home > Web Front-end > JS Tutorial > body text

A small detail about jquery ajax calling webservice with parameters to return XML data_jquery

WBOY
Release: 2016-05-16 17:51:15
Original
1067 people have browsed it

Later, I found a post on an inconspicuous website, and someone’s suggestion reminded me.
My original code is written like this:
Error code

Copy code The code is as follows:

$.ajax({
type: "post",
url: "_service.asmx/getDataFromATable",
data: " { tablename: temp }",
dataType: "XML"
...

WS is written like this:
webservice
Copy code The code is as follows:

[WebMethod]
public DataSet getDataFromATable(string tablename)
{
DataSet ds = new DataSet();
using (SqlConnection con=new SqlConnection(connectionString))
{
con.Open();
SqlCommand cmd = new SqlCommand();
cmd.Connection = con;
cmd.CommandText = string. Format("select * from {0}",tablename);
SqlDataAdapter da = new SqlDataAdapter(cmd);
da.Fill(ds);
}
return ds;
}
[code]
I found on the Internet that if it is a WS without parameters, there is nothing wrong with using the above data: "{}", but if there are parameters, it will be wrong.
In fact. It's very simple, just make a few small modifications
Correct code
[code]
$.ajax({
type: "post",
url: "_service. asmx/getDataFromATable",
data: { tablename: temp },
dataType: "XML",
...

This is an insignificant little detail.
What I want to say is that some people, whether they are experts or novices, should not blindly repost other people's things.
Please repost something correct.
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!