天天看點

微信JS SDK Demo

微信JS-SDK是微信公衆平台面向網頁開發者提供的基于微信内的網頁開發工具包。

通過使用微信JS-SDK,網頁開發者可借助微信高效地使用拍照、選圖、語音、位置等手機系統的能力,同時可以直接使用微信分享、掃一掃、卡券、支付等微信特有的能力,為微信使用者提供更優質的網頁體驗。

此文檔面向網頁開發者介紹微信JS-SDK如何使用及相關注意事項。

一:html代碼部分

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

151

152

153

154

155

156

157

158

159

160

161

162

163

164

165

166

167

168

<!

DOCTYPE

html>    

<

html

>    

<

head

>    

<

meta

charset

=

"utf-8"

>    

<

title

>微信JS-SDK Demo</

title

>    

<

meta

name

=

"viewport"

content

=

"width=device-width, initial-scale=1, user-scalable=0"

>    

<

link

rel

=

"stylesheet"

href

=

"css/style.css"

>    

</

head

>    

<

body

ontouchstart

=

""

>    

<

div

class

=

"wxapi_container"

>    

<

div

class

=

"wxapi_index_container"

>    

<

ul

class

=

"label_box lbox_close wxapi_index_list"

>    

<

li

class

=

"label_item wxapi_index_item"

><

a

class

=

"label_inner"

href

=

"#menu-basic"

>基礎接口</

a

></

li

>    

<

li

class

=

"label_item wxapi_index_item"

><

a

class

=

"label_inner"

href

=

"#menu-share"

>分享接口</

a

></

li

>    

<

li

class

=

"label_item wxapi_index_item"

><

a

class

=

"label_inner"

href

=

"#menu-image"

>圖像接口</

a

></

li

>    

<

li

class

=

"label_item wxapi_index_item"

><

a

class

=

"label_inner"

href

=

"#menu-voice"

>音頻接口</

a

></

li

>    

<

li

class

=

"label_item wxapi_index_item"

><

a

class

=

"label_inner"

href

=

"#menu-smart"

>智能接口</

a

></

li

>    

<

li

class

=

"label_item wxapi_index_item"

><

a

class

=

"label_inner"

href

=

"#menu-device"

>裝置資訊接口</

a

></

li

>    

<

li

class

=

"label_item wxapi_index_item"

><

a

class

=

"label_inner"

href

=

"#menu-location"

>地理位置接口</

a

></

li

>    

<

li

class

=

"label_item wxapi_index_item"

><

a

class

=

"label_inner"

href

=

"#menu-webview"

>界面操作接口</

a

></

li

>    

<

li

class

=

"label_item wxapi_index_item"

><

a

class

=

"label_inner"

href

=

"#menu-scan"

>微信掃一掃接口</

a

></

li

>    

<

li

class

=

"label_item wxapi_index_item"

><

a

class

=

"label_inner"

href

=

"#menu-shopping"

>微信小店接口</

a

></

li

>    

<

li

class

=

"label_item wxapi_index_item"

><

a

class

=

"label_inner"

href

=

"#menu-card"

>微信卡券接口</

a

></

li

>    

<

li

class

=

"label_item wxapi_index_item"

><

a

class

=

"label_inner"

href

=

"#menu-pay"

>微信支付接口</

a

></

li

>    

</

ul

>    

</

div

>    

<

div

class

=

"lbox_close wxapi_form"

>    

<

h3

id

=

"menu-basic"

>基礎接口</

h3

>    

<

span

class

=

"desc"

>判斷目前用戶端是否支援指定JS接口</

span

>    

<

button

class

=

"btn btn_primary"

id

=

"checkJsApi"

>checkJsApi</

button

>    

<

h3

id

=

"menu-share"

>分享接口</

h3

>    

<

span

class

=

"desc"

>擷取“分享到朋友圈”按鈕點選狀态及自定義分享内容接口</

span

>    

<

button

class

=

"btn btn_primary"

id

=

"onMenuShareTimeline"

>onMenuShareTimeline</

button

>    

<

span

class

=

"desc"

>擷取“分享給朋友”按鈕點選狀态及自定義分享内容接口</

span

>    

<

button

class

=

"btn btn_primary"

id

=

"onMenuShareAppMessage"

>onMenuShareAppMessage</

button

>    

<

span

class

=

"desc"

>擷取“分享到QQ”按鈕點選狀态及自定義分享内容接口</

span

>    

<

button

class

=

"btn btn_primary"

id

=

"onMenuShareQQ"

>onMenuShareQQ</

button

>    

<

span

class

=

"desc"

>擷取“分享到騰訊微網誌”按鈕點選狀态及自定義分享内容接口</

span

>    

<

button

class

=

"btn btn_primary"

id

=

"onMenuShareWeibo"

>onMenuShareWeibo</

button

>    

<

h3

id

=

"menu-image"

>圖像接口</

h3

>    

<

span

class

=

"desc"

>拍照或從手機相冊中選圖接口</

span

>    

<

button

class

=

"btn btn_primary"

id

=

"chooseImage"

>chooseImage</

button

>    

<

span

class

=

"desc"

>預覽圖檔接口</

span

>    

<

button

class

=

"btn btn_primary"

id

=

"previewImage"

>previewImage</

button

>    

<

span

class

=

"desc"

>上傳圖檔接口</

span

>    

<

button

class

=

"btn btn_primary"

id

=

"uploadImage"

>uploadImage</

button

>    

<

span

class

=

"desc"

>下載下傳圖檔接口</

span

>    

<

button

class

=

"btn btn_primary"

id

=

"downloadImage"

>downloadImage</

button

>    

<

h3

id

=

"menu-voice"

>音頻接口</

h3

>    

<

span

class

=

"desc"

>開始錄音接口</

span

>    

<

button

class

=

"btn btn_primary"

id

=

"startRecord"

>startRecord</

button

>    

<

span

class

=

"desc"

>停止錄音接口</

span

>    

<

button

class

=

"btn btn_primary"

id

=

"stopRecord"

>stopRecord</

button

>    

<

span

class

=

"desc"

>播放語音接口</

span

>    

<

button

class

=

"btn btn_primary"

id

=

"playVoice"

>playVoice</

button

>    

<

span

class

=

"desc"

>暫停播放接口</

span

>    

<

button

class

=

"btn btn_primary"

id

=

"pauseVoice"

>pauseVoice</

button

>    

<

span

class

=

"desc"

>停止播放接口</

span

>    

<

button

class

=

"btn btn_primary"

id

=

"stopVoice"

>stopVoice</

button

>    

<

span

class

=

"desc"

>上傳語音接口</

span

>    

<

button

class

=

"btn btn_primary"

id

=

"uploadVoice"

>uploadVoice</

button

>    

<

span

class

=

"desc"

>下載下傳語音接口</

span

>    

<

button

class

=

"btn btn_primary"

id

=

"downloadVoice"

>downloadVoice</

button

>    

<

h3

id

=

"menu-smart"

>智能接口</

h3

>    

<

span

class

=

"desc"

>識别音頻并傳回識别結果接口</

span

>    

<

button

class

=

"btn btn_primary"

id

=

"translateVoice"

>translateVoice</

button

>    

<

h3

id

=

"menu-device"

>裝置資訊接口</

h3

>    

<

span

class

=

"desc"

>擷取網絡狀态接口</

span

>    

<

button

class

=

"btn btn_primary"

id

=

"getNetworkType"

>getNetworkType</

button

>    

<

h3

id

=

"menu-location"

>地理位置接口</

h3

>    

<

span

class

=

"desc"

>使用微信内置地圖檢視位置接口</

span

>    

<

button

class

=

"btn btn_primary"

id

=

"openLocation"

>openLocation</

button

>    

<

span

class

=

"desc"

>擷取地理位置接口</

span

>    

<

button

class

=

"btn btn_primary"

id

=

"getLocation"

>getLocation</

button

>    

<

h3

id

=

"menu-webview"

>界面操作接口</

h3

>    

<

span

class

=

"desc"

>隐藏右上角菜單接口</

span

>    

<

button

class

=

"btn btn_primary"

id

=

"hideOptionMenu"

>hideOptionMenu</

button

>    

<

span

class

=

"desc"

>顯示右上角菜單接口</

span

>    

<

button

class

=

"btn btn_primary"

id

=

"showOptionMenu"

>showOptionMenu</

button

>    

<

span

class

=

"desc"

>關閉目前網頁視窗接口</

span

>    

<

button

class

=

"btn btn_primary"

id

=

"closeWindow"

>closeWindow</

button

>    

<

span

class

=

"desc"

>批量隐藏功能按鈕接口</

span

>    

<

button

class

=

"btn btn_primary"

id

=

"hideMenuItems"

>hideMenuItems</

button

>    

<

span

class

=

"desc"

>批量顯示功能按鈕接口</

span

>    

<

button

class

=

"btn btn_primary"

id

=

"showMenuItems"

>showMenuItems</

button

>    

<

span

class

=

"desc"

>隐藏所有非基礎按鈕接口</

span

>    

<

button

class

=

"btn btn_primary"

id

=

"hideAllNonBaseMenuItem"

>hideAllNonBaseMenuItem</

button

>    

<

span

class

=

"desc"

>顯示所有功能按鈕接口</

span

>    

<

button

class

=

"btn btn_primary"

id

=

"showAllNonBaseMenuItem"

>showAllNonBaseMenuItem</

button

>    

<

h3

id

=

"menu-scan"

>微信掃一掃</

h3

>    

<

span

class

=

"desc"

>調起微信掃一掃接口</

span

>    

<

button

class

=

"btn btn_primary"

id

=

"scanQRCode0"

>scanQRCode(微信處理結果)</

button

>    

<

button

class

=

"btn btn_primary"

id

=

"scanQRCode1"

>scanQRCode(直接傳回結果)</

button

>    

<

h3

id

=

"menu-shopping"

>微信小店接口</

h3

>    

<

span

class

=

"desc"

>跳轉微信商品頁接口</

span

>    

<

button

class

=

"btn btn_primary"

id

=

"openProductSpecificView"

>openProductSpecificView</

button

>    

<

h3

id

=

"menu-card"

>微信卡券接口</

h3

>    

<

span

class

=

"desc"

>批量添加卡券接口</

span

>    

<

button

class

=

"btn btn_primary"

id

=

"addCard"

>addCard</

button

>    

<

span

class

=

"desc"

>調起适用于門店的卡券清單并擷取使用者選擇清單</

span

>    

<

button

class

=

"btn btn_primary"

id

=

"chooseCard"

>chooseCard</

button

>    

<

span

class

=

"desc"

>檢視微信卡包中的卡券接口</

span

>    

<

button

class

=

"btn btn_primary"

id

=

"openCard"

>openCard</

button

>    

<

h3

id

=

"menu-pay"

>微信支付接口</

h3

>    

<

span

class

=

"desc"

>發起一個微信支付請求</

span

>    

<

button

class

=

"btn btn_primary"

id

=

"chooseWXPay"

>chooseWXPay</

button

>    

</

div

>    

</

div

>    

</

body

>    

<

script

src

=

"http://res.wx.qq.com/open/js/jweixin-1.0.0.js"

></

script

>    

<

script

>    

/*    

* 注意:    

* 1. 所有的JS接口隻能在公衆号綁定的域名下調用,公衆号開發者需要先登入微信公衆平台進入“公衆号設定”的“功能設定”裡填寫“JS接口安全域名”。    

* 2. 如果發現在 Android 不能分享自定義内容,請到官網下載下傳最新的包覆寫安裝,Android 自定義分享接口需更新至 6.0.2.58 版本及以上。    

* 3. 完整 JS-SDK 文檔位址:http://mp.weixin.qq.com/wiki/7/aaa137b55fb2e0456bf8dd9148dd613f.html    

*    

* 如有問題請通過以下管道回報:    

* 郵箱位址:[email protected]    

* 郵件主題:【微信JS-SDK回報】具體問題    

* 郵件内容說明:用簡明的語言描述問題所在,并交代清楚遇到該問題的場景,可附上截屏圖檔,微信團隊會盡快處理你的回報。    

*/    

wx.config({    

debug: false,    

appId: 'wxf8b4f85f3a794e77',    

timestamp: 1421142450,    

nonceStr: '9hKgyCLgGZOgQmEI',    

signature: 'bf7a5555f9ad0e7e491535f232349a40510a6f8f',    

jsApiList: [    

'checkJsApi',    

'onMenuShareTimeline',    

'onMenuShareAppMessage',    

'onMenuShareQQ',    

'onMenuShareWeibo',    

'hideMenuItems',    

'showMenuItems',    

'hideAllNonBaseMenuItem',    

'showAllNonBaseMenuItem',    

'translateVoice',    

'startRecord',    

'stopRecord',    

'onRecordEnd',    

'playVoice',    

'pauseVoice',    

'stopVoice',    

'uploadVoice',    

'downloadVoice',    

'chooseImage',    

'previewImage',    

'uploadImage',    

'downloadImage',    

'getNetworkType',    

'openLocation',    

'getLocation',    

'hideOptionMenu',    

'showOptionMenu',    

'closeWindow',    

'scanQRCode',    

'chooseWXPay',    

'openProductSpecificView',    

'addCard',    

'chooseCard',    

'openCard'    

]    

});    

</

script

>    

<

script

src

=

"js/demo.js"

> </

script

>    

</

html

>

二:demo.js部分

169

170

171

172

173

174

175

176

177

178

179

180

181

182

183

184

185

186

187

188

189

190

191

192

193

194

195

196

197

198

199

200

201

202

203

204

205

206

207

208

209

210

211

212

213

214

215

216

217

218

219

220

221

222

223

224

225

226

227

228

229

230

231

232

233

234

235

236

237

238

239

240

241

242

243

244

245

246

247

248

249

250

251

252

253

254

255

256

257

258

259

260

261

262

263

264

265

266

267

268

269

270

271

272

273

274

275

276

277

278

279

280

281

282

283

284

285

286

287

288

289

290

291

292

293

294

295

296

297

298

299

300

301

302

303

304

305

306

307

308

309

310

311

312

313

314

315

316

317

318

319

320

321

322

323

324

325

326

327

328

329

330

331

332

333

334

335

336

337

338

339

340

341

342

343

344

345

346

347

348

349

350

351

352

353

354

355

356

357

358

359

360

361

362

363

364

365

366

367

368

369

370

371

372

373

374

375

376

377

378

379

380

381

382

383

384

385

386

387

388

389

390

391

392

393

394

395

396

397

398

399

400

401

402

403

404

405

406

407

408

409

410

411

412

413

414

415

416

417

418

419

420

421

422

423

424

425

426

427

428

429

430

431

432

433

434

435

436

437

438

439

440

441

442

443

444

445

446

447

448

449

450

451

452

453

454

455

456

457

458

459

460

461

462

463

464

465

466

467

468

469

470

471

472

473

474

475

476

477

478

479

480

481

482

483

484

485

486

487

488

489

490

491

492

493

494

495

496

497

498

499

500

501

502

503

504

505

506

507

508

509

510

511

512

513

514

515

516

517

518

519

520

521

522

523

524

525

526

527

528

529

530

531

532

/*

* 注意:

* 1. 所有的JS接口隻能在公衆号綁定的域名下調用,公衆号開發者需要先登入微信公衆平台進入“公衆号設定”的“功能設定”裡填寫“JS接口安全域名”。

* 2. 如果發現在 Android 不能分享自定義内容,請到官網下載下傳最新的包覆寫安裝,Android 自定義分享接口需更新至 6.0.2.58 版本及以上。

* 3. 完整 JS-SDK 文檔位址:http://mp.weixin.qq.com/wiki/7/aaa137b55fb2e0456bf8dd9148dd613f.html

*

* 如有問題請通過以下管道回報:

* 郵箱位址:[email protected]

* 郵件主題:【微信JS-SDK回報】具體問題

* 郵件内容說明:用簡明的語言描述問題所在,并交代清楚遇到該問題的場景,可附上截屏圖檔,微信團隊會盡快處理你的回報。

*/

wx.config({

debug: 

false

,

appId: 

'wxf8b4f85f3a794e77'

,

timestamp: 1421142450,

nonceStr: 

'9hKgyCLgGZOgQmEI'

,

signature: 

'bf7a5555f9ad0e7e491535f232349a40510a6f8f'

,

jsApiList: [

'checkJsApi'

,

'onMenuShareTimeline'

,

'onMenuShareAppMessage'

,

'onMenuShareQQ'

,

'onMenuShareWeibo'

,

'hideMenuItems'

,

'showMenuItems'

,

'hideAllNonBaseMenuItem'

,

'showAllNonBaseMenuItem'

,

'translateVoice'

,

'startRecord'

,

'stopRecord'

,

'onRecordEnd'

,

'playVoice'

,

'pauseVoice'

,

'stopVoice'

,

'uploadVoice'

,

'downloadVoice'

,

'chooseImage'

,

'previewImage'

,

'uploadImage'

,

'downloadImage'

,

'getNetworkType'

,

'openLocation'

,

'getLocation'

,

'hideOptionMenu'

,

'showOptionMenu'

,

'closeWindow'

,

'scanQRCode'

,

'chooseWXPay'

,

'openProductSpecificView'

,

'addCard'

,

'chooseCard'

,

'openCard'

]

});

/*

* 注意:

* 1. 所有的JS接口隻能在公衆号綁定的域名下調用,公衆号開發者需要先登入微信公衆平台進入“公衆号設定”的“功能設定”裡填寫“JS接口安全域名”。

* 2. 如果發現在 Android 不能分享自定義内容,請到官網下載下傳最新的包覆寫安裝,Android 自定義分享接口需更新至 6.0.2.58 版本及以上。

* 3. 完整 JS-SDK 文檔位址:http://mp.weixin.qq.com/wiki/7/aaa137b55fb2e0456bf8dd9148dd613f.html

*

* 如有問題請通過以下管道回報:

* 郵箱位址:[email protected]

* 郵件主題:【微信JS-SDK回報】具體問題

* 郵件内容說明:用簡明的語言描述問題所在,并交代清楚遇到該問題的場景,可附上截屏圖檔,微信團隊會盡快處理你的回報。

*/

wx.ready(

function

() {

// 1 判斷目前版本是否支援指定 JS 接口,支援批量判斷

document.querySelector(

'#checkJsApi'

).onclick = 

function

() {

wx.checkJsApi({

jsApiList: [

'getNetworkType'

,

'previewImage'

],

success: 

function

(res) {

alert(JSON.stringify(res));

}

});

};

// 2. 分享接口

// 2.1 監聽“分享給朋友”,按鈕點選、自定義分享内容及分享結果接口

document.querySelector(

'#onMenuShareAppMessage'

).onclick = 

function

() {

wx.onMenuShareAppMessage({

title: 

'網際網路之子'

,

desc: 

'在長大的過程中,我才慢慢發現,我身邊的所有事,别人跟我說的所有事,那些所謂本來如此,注定如此的事,它們其實沒有非得如此,事情是可以改變的。更重要的是,有些事既然錯了,那就該做出改變。'

,

link: 

'http://movie.douban.com/subject/25785114/'

,

imgUrl: 

'http://img3.douban.com/view/movie_poster_cover/spst/public/p2166127561.jpg'

,

trigger: 

function

(res) {

alert(

'使用者點選發送給朋友'

);

},

success: 

function

(res) {

alert(

'已分享'

);

},

cancel: 

function

(res) {

alert(

'已取消'

);

},

fail: 

function

(res) {

alert(JSON.stringify(res));

}

});

alert(

'已注冊擷取“發送給朋友”狀态事件'

);

};

// 2.2 監聽“分享到朋友圈”按鈕點選、自定義分享内容及分享結果接口

document.querySelector(

'#onMenuShareTimeline'

).onclick = 

function

() {

wx.onMenuShareTimeline({

title: 

'網際網路之子'

,

link: 

'http://movie.douban.com/subject/25785114/'

,

imgUrl: 

'http://img3.douban.com/view/movie_poster_cover/spst/public/p2166127561.jpg'

,

trigger: 

function

(res) {

alert(

'使用者點選分享到朋友圈'

);

},

success: 

function

(res) {

alert(

'已分享'

);

},

cancel: 

function

(res) {

alert(

'已取消'

);

},

fail: 

function

(res) {

alert(JSON.stringify(res));

}

});

alert(

'已注冊擷取“分享到朋友圈”狀态事件'

);

};

// 2.3 監聽“分享到QQ”按鈕點選、自定義分享内容及分享結果接口

document.querySelector(

'#onMenuShareQQ'

).onclick = 

function

() {

wx.onMenuShareQQ({

title: 

'網際網路之子'

,

desc: 

'在長大的過程中,我才慢慢發現,我身邊的所有事,别人跟我說的所有事,那些所謂本來如此,注定如此的事,它們其實沒有非得如此,事情是可以改變的。更重要的是,有些事既然錯了,那就該做出改變。'

,

link: 

'http://movie.douban.com/subject/25785114/'

,

imgUrl: 

'http://img3.douban.com/view/movie_poster_cover/spst/public/p2166127561.jpg'

,

trigger: 

function

(res) {

alert(

'使用者點選分享到QQ'

);

},

complete: 

function

(res) {

alert(JSON.stringify(res));

},

success: 

function

(res) {

alert(

'已分享'

);

},

cancel: 

function

(res) {

alert(

'已取消'

);

},

fail: 

function

(res) {

alert(JSON.stringify(res));

}

});

alert(

'已注冊擷取“分享到 QQ”狀态事件'

);

};

// 2.4 監聽“分享到微網誌”按鈕點選、自定義分享内容及分享結果接口

document.querySelector(

'#onMenuShareWeibo'

).onclick = 

function

() {

wx.onMenuShareWeibo({

title: 

'網際網路之子'

,

desc: 

'在長大的過程中,我才慢慢發現,我身邊的所有事,别人跟我說的所有事,那些所謂本來如此,注定如此的事,它們其實沒有非得如此,事情是可以改變的。更重要的是,有些事既然錯了,那就該做出改變。'

,

link: 

'http://movie.douban.com/subject/25785114/'

,

imgUrl: 

'http://img3.douban.com/view/movie_poster_cover/spst/public/p2166127561.jpg'

,

trigger: 

function

(res) {

alert(

'使用者點選分享到微網誌'

);

},

complete: 

function

(res) {

alert(JSON.stringify(res));

},

success: 

function

(res) {

alert(

'已分享'

);

},

cancel: 

function

(res) {

alert(

'已取消'

);

},

fail: 

function

(res) {

alert(JSON.stringify(res));

}

});

alert(

'已注冊擷取“分享到微網誌”狀态事件'

);

};

// 3 智能接口

var

voice = {

localId: 

''

,

serverId: 

''

};

// 3.1 識别音頻并傳回識别結果

document.querySelector(

'#translateVoice'

).onclick = 

function

() {

if

(voice.localId == 

''

) {

alert(

'請先使用 startRecord 接口錄制一段聲音'

);

return

;

}

wx.translateVoice({

localId: voice.localId,

complete: 

function

(res) {

if

(res.hasOwnProperty(

'translateResult'

)) {

alert(

'識别結果:'

+ res.translateResult);

else

{

alert(

'無法識别'

);

}

}

});

};

// 4 音頻接口

// 4.2 開始錄音

document.querySelector(

'#startRecord'

).onclick = 

function

() {

wx.startRecord({

cancel: 

function

() {

alert(

'使用者拒絕授權錄音'

);

}

});

};

// 4.3 停止錄音

document.querySelector(

'#stopRecord'

).onclick = 

function

() {

wx.stopRecord({

success: 

function

(res) {

voice.localId = res.localId;

},

fail: 

function

(res) {

alert(JSON.stringify(res));

}

});

};

// 4.4 監聽錄音自動停止

wx.onVoiceRecordEnd({

complete: 

function

(res) {

voice.localId = res.localId;

alert(

'錄音時間已超過一分鐘'

);

}

});

// 4.5 播放音頻

document.querySelector(

'#playVoice'

).onclick = 

function

() {

if

(voice.localId == 

''

) {

alert(

'請先使用 startRecord 接口錄制一段聲音'

);

return

;

}

wx.playVoice({

localId: voice.localId

});

};

// 4.6 暫停播放音頻

document.querySelector(

'#pauseVoice'

).onclick = 

function

() {

wx.pauseVoice({

localId: voice.localId

});

};

// 4.7 停止播放音頻

document.querySelector(

'#stopVoice'

).onclick = 

function

() {

wx.stopVoice({

localId: voice.localId

});

};

// 4.8 監聽錄音播放停止

wx.onVoicePlayEnd({

complete: 

function

(res) {

alert(

'錄音('

+ res.localId + 

')播放結束'

);

}

});

// 4.8 上傳語音

document.querySelector(

'#uploadVoice'

).onclick = 

function

() {

if

(voice.localId == 

''

) {

alert(

'請先使用 startRecord 接口錄制一段聲音'

);

return

;

}

wx.uploadVoice({

localId: voice.localId,

success: 

function

(res) {

alert(

'上傳語音成功,serverId 為'

+ res.serverId);

voice.serverId = res.serverId;

}

});

};

// 4.9 下載下傳語音

document.querySelector(

'#downloadVoice'

).onclick = 

function

() {

if

(voice.serverId == 

''

) {

alert(

'請先使用 uploadVoice 上傳聲音'

);

return

;

}

wx.downloadVoice({

serverId: voice.serverId,

success: 

function

(res) {

alert(

'下載下傳語音成功,localId 為'

+ res.localId);

voice.localId = res.localId;

}

});

};

// 5 圖檔接口

// 5.1 拍照、本地選圖

var

images = {

localId: [],

serverId: []

};

document.querySelector(

'#chooseImage'

).onclick = 

function

() {

wx.chooseImage({

success: 

function

(res) {

images.localId = res.localIds;

alert(

'已選擇 '

+ res.localIds.length + 

' 張圖檔'

);

}

});

};

// 5.2 圖檔預覽

document.querySelector(

'#previewImage'

).onclick = 

function

() {

wx.previewImage({

current: 

'http://img5.douban.com/view/photo/photo/public/p1353993776.jpg'

,

urls: [

'http://img3.douban.com/view/photo/photo/public/p2152117150.jpg'

,

'http://img5.douban.com/view/photo/photo/public/p1353993776.jpg'

,

'http://img3.douban.com/view/photo/photo/public/p2152134700.jpg'

]

});

};

// 5.3 上傳圖檔

document.querySelector(

'#uploadImage'

).onclick = 

function

() {

if

(images.localId.length == 0) {

alert(

'請先使用 chooseImage 接口選擇圖檔'

);

return

;

}

var

i = 0, length = images.localId.length;

images.serverId = [];

function

upload() {

wx.uploadImage({

localId: images.localId[i],

success: 

function

(res) {

i++;

alert(

'已上傳:'

+ i + 

'/'

+ length);

images.serverId.push(res.serverId);

if

(i < length) {

upload();

}

},

fail: 

function

(res) {

alert(JSON.stringify(res));

}

});

}

upload();

};

// 5.4 下載下傳圖檔

document.querySelector(

'#downloadImage'

).onclick = 

function

() {

if

(images.serverId.length === 0) {

alert(

'請先使用 uploadImage 上傳圖檔'

);

return

;

}

var

i = 0, length = images.serverId.length;

images.localId = [];

function

download() {

wx.downloadImage({

serverId: images.serverId[i],

success: 

function

(res) {

i++;

alert(

'已下載下傳:'

+ i + 

'/'

+ length);

images.localId.push(res.localId);

if

(i < length) {

download();

}

}

});

}

download();

};

// 6 裝置資訊接口

// 6.1 擷取目前網絡狀态

document.querySelector(

'#getNetworkType'

).onclick = 

function

() {

wx.getNetworkType({

success: 

function

(res) {

alert(res.networkType);

},

fail: 

function

(res) {

alert(JSON.stringify(res));

}

});

};

// 7 地理位置接口

// 7.1 檢視地理位置

document.querySelector(

'#openLocation'

).onclick = 

function

() {

wx.openLocation({

latitude: 23.099994,

longitude: 113.324520,

name: 

'TIT 創意園'

,

address: 

'廣州市海珠區新港中路 397 号'

,

scale: 14,

infoUrl: 

'http://weixin.qq.com'

});

};

// 7.2 擷取目前地理位置

document.querySelector(

'#getLocation'

).onclick = 

function

() {

wx.getLocation({

success: 

function

(res) {

alert(JSON.stringify(res));

},

cancel: 

function

(res) {

alert(

'使用者拒絕授權擷取地理位置'

);

}

});

};

// 8 界面操作接口

// 8.1 隐藏右上角菜單

document.querySelector(

'#hideOptionMenu'

).onclick = 

function

() {

wx.hideOptionMenu();

};

// 8.2 顯示右上角菜單

document.querySelector(

'#showOptionMenu'

).onclick = 

function

() {

wx.showOptionMenu();

};

// 8.3 批量隐藏菜單項

document.querySelector(

'#hideMenuItems'

).onclick = 

function

() {

wx.hideMenuItems({

menuList: [

'menuItem:readMode'

// 閱讀模式

'menuItem:share:timeline'

// 分享到朋友圈

'menuItem:copyUrl'

// 複制連結

],

success: 

function

(res) {

alert(

'已隐藏“閱讀模式”,“分享到朋友圈”,“複制連結”等按鈕'

);

},

fail: 

function

(res) {

alert(JSON.stringify(res));

}

});

};

// 8.4 批量顯示菜單項

document.querySelector(

'#showMenuItems'

).onclick = 

function

() {

wx.showMenuItems({

menuList: [

'menuItem:readMode'

// 閱讀模式

'menuItem:share:timeline'

// 分享到朋友圈

'menuItem:copyUrl'

// 複制連結

],

success: 

function

(res) {

alert(

'已顯示“閱讀模式”,“分享到朋友圈”,“複制連結”等按鈕'

);

},

fail: 

function

(res) {

alert(JSON.stringify(res));

}

});

};

// 8.5 隐藏所有非基本菜單項

document.querySelector(

'#hideAllNonBaseMenuItem'

).onclick = 

function

() {

wx.hideAllNonBaseMenuItem({

success: 

function

() {

alert(

'已隐藏所有非基本菜單項'

);

}

});

};

// 8.6 顯示所有被隐藏的非基本菜單項

document.querySelector(

'#showAllNonBaseMenuItem'

).onclick = 

function

() {

wx.showAllNonBaseMenuItem({

success: 

function

() {

alert(

'已顯示所有非基本菜單項'

);

}

});

};

// 8.7 關閉目前視窗

document.querySelector(

'#closeWindow'

).onclick = 

function

() {

wx.closeWindow();

};

// 9 微信原生接口

// 9.1.1 掃描二維碼并傳回結果

document.querySelector(

'#scanQRCode0'

).onclick = 

function

() {

wx.scanQRCode({

desc: 

'scanQRCode desc'

});

};

// 9.1.2 掃描二維碼并傳回結果

document.querySelector(

'#scanQRCode1'

).onclick = 

function

() {

wx.scanQRCode({

needResult: 1,

desc: 

'scanQRCode desc'

,

success: 

function

(res) {

alert(JSON.stringify(res));

}

});

};

// 10 微信支付接口

// 10.1 發起一個支付請求

document.querySelector(

'#chooseWXPay'

).onclick = 

function

() {

wx.chooseWXPay({

timestamp: 1414723227,

nonceStr: 

'noncestr'

,

package

'addition=action_id%3dgaby1234%26limit_pay%3d&bank_type=WX&body=innertest&fee_type=1&input_charset=GBK&notify_url=http%3A%2F%2F120.204.206.246%2Fcgi-bin%2Fmmsupport-bin%2Fnotifypay&out_trade_no=1414723227818375338&partner=1900000109&spbill_create_ip=127.0.0.1&total_fee=1&sign=432B647FE95C7BF73BCD177CEECBEF8D'

,

paySign: 

'bd5b1933cda6e9548862944836a9b52e8c9a2b69'

});

};

// 11.3  跳轉微信商品頁

document.querySelector(

'#openProductSpecificView'

).onclick = 

function

() {

wx.openProductSpecificView({

productId: 

'pDF3iY_m2M7EQ5EKKKWd95kAxfNw'

});

};

// 12 微信卡券接口

// 12.1 添加卡券

document.querySelector(

'#addCard'

).onclick = 

function

() {

wx.addCard({

cardList: [

{

cardId: 

'pDF3iY9tv9zCGCj4jTXFOo1DxHdo'

,

cardExt: 

'{"code": "", "openid": "", "timestamp": "1418301401", "signature":"64e6a7cc85c6e84b726f2d1cbef1b36e9b0f9750"}'

},

{

cardId: 

'pDF3iY9tv9zCGCj4jTXFOo1DxHdo'

,

cardExt: 

'{"code": "", "openid": "", "timestamp": "1418301401", "signature":"64e6a7cc85c6e84b726f2d1cbef1b36e9b0f9750"}'

}

],

success: 

function

(res) {

alert(

'已添加卡券:'

+ JSON.stringify(res.cardList));

}

});

};

// 12.2 選擇卡券

document.querySelector(

'#chooseCard'

).onclick = 

function

() {

wx.chooseCard({

cardSign: 

'97e9c5e58aab3bdf6fd6150e599d7e5806e5cb91'

,

timestamp: 1417504553,

nonceStr: 

'k0hGdSXKZEj3Min5'

,

success: 

function

(res) {

alert(

'已選擇卡券:'

+ JSON.stringify(res.cardList));

}

});

};

// 12.3 檢視卡券

document.querySelector(

'#openCard'

).onclick = 

function

() {

alert(

'您沒有該公衆号的卡券無法打開卡券。'

);

wx.openCard({

cardList: [

]

});

};

var

shareData = {

title: 

'微信JS-SDK Demo'

,

desc: 

'微信JS-SDK,幫助第三方為使用者提供更優質的移動web服務'

,

link: 

'http://demo.open.weixin.qq.com/jssdk/'

,

imgUrl: 

'http://mmbiz.qpic.cn/mmbiz/icTdbqWNOwNRt8Qia4lv7k3M9J1SKqKCImxJCt7j9rHYicKDI45jRPBxdzdyREWnk0ia0N5TMnMfth7SdxtzMvVgXg/0'

};

wx.onMenuShareAppMessage(shareData);

wx.onMenuShareTimeline(shareData);

});

wx.error(

function

(res) {

alert(res.errMsg);

});